-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.92 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "directlfq"
requires-python = ">=3.9"
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [
{name = "Mann Labs", email = "[email protected]"}
]
description = "An open-source Python package of the AlphaPept ecosystem"
readme = "README.md"
keywords = [
"LFQ",
"label-free quantification",
"mass spectrometry",
"proteomics",
"bioinformatics",
"AlphaPept",
"AlphaPept ecosystem",
]
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive"
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
"Paper preprint" = "https://www.biochem.mpg.de/mann"
Repository = "https://github.com/MannLabs/directlfq"
#Documentation = "https://readthedocs.org"
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
Issues = "https://github.com/MannLabs/directlfq/issues"
"Mann Labs Homepage" = "https://www.biochem.mpg.de/mann"
[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",
] }, gui = { file = [ "requirements/requirements_gui_loose.txt",
] }, gui-stable = { file = [ "requirements/requirements_gui.txt",
] }, tests = { file = [ "requirements/requirements_tests.txt",
] }, development = { file = ["requirements/requirements_development.txt", "requirements/requirements_tests.txt",
] }}
version = {attr = "directlfq.__version__"}
[project.scripts]
directlfq = "directlfq.cli:run"