-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# inspired by https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bletl"
version = "1.7.1"
description = "Package for parsing and transforming BioLector raw data."
readme = "README.md"
requires-python = ">=3.11"
license = "AGPL-3.0-or-later"
authors = [
{name = "Michael Osthege", email = "m.osthege@fz-juelich.de"},
]
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Science/Research",
]
dependencies = [
"csaps>=0.11",
"joblib",
"numpy",
"pandas",
"rich",
"scipy",
"tsfresh",
"setuptools",
]
[project.urls]
Homepage = "https://github.com/jubiotech/bletl"
Documentation = "https://bletl.readthedocs.io/en/latest/"
Download = "https://pypi.org/project/bletl/"
[tool.setuptools]
package-dir = {"bletl" = "bletl"}
[tool.black]
line-length = 110
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true