-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (56 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "alphatims"
requires-python = ">=3.8"
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [
{name = "Sander Willems", email = "opensource@alphapept.com"},
{name = "Eugenia Voytik", email = "opensource@alphapept.com"}
]
readme = "README.md"
keywords = [
"proteomics",
"mass spectrometry",
"bruker",
"timsTOF",
"bioinformatics",
"data indexing",
"AlphaPept",
"AlphaPept ecosystem",
"alphapept.org",
]
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
repository = "https://github.com/MannLabs/alphatims"
issues = "https://github.com/MannLabs/alphatims/issues"
download = "https://mannlabs.github.io/alphatims/releases"
documentation = "https://alphatims.readthedocs.io/en/latest/"
homepage = "https://www.alphapept.org"
"Mann Labs Homepage" = "https://www.biochem.mpg.de/mann"
publication = "https://doi.org/10.1016/j.mcpro.2021.100149"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
# https://stackoverflow.com/a/73600610
dependencies = {file = ["requirements/requirements_loose.txt"]}
optional-dependencies.stable = { file = ["requirements/requirements.txt"] }
optional-dependencies.legacy = { file = ["requirements/requirements_legacy_loose.txt"] }
optional-dependencies.legacy-stable = { file = ["requirements/requirements_legacy.txt"] }
optional-dependencies.plotting = { file = ["requirements/requirements_plotting_loose.txt"] } # TODO rename to 'gui'
optional-dependencies.plotting-stable = { file = ["requirements/requirements_plotting.txt"] }
optional-dependencies.development = { file = ["requirements/requirements_development.txt"] }
version = {attr = "alphatims.__version__"}
[project.scripts]
alphatims = "alphatims.cli:run"