-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (62 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'specimen'
authors = [
{ name="Carolin Brune"},
{ name="Gwendolyn O. Döbel"},
]
maintainers = [
{name = "Nina Roßbach"}
]
description = "SPECIMEN: A collection of workflows for strain-specific metabolic modelling."
readme = "README.md"
version = "0.0.dev1"
requires-python = ">=3.10"
license = {text = "GPL-3.0"}
keywords = ['Systems Biology', 'GEM', 'Metabolic Modelling', 'Python Package', 'Workflow']
classifiers = [
'Operating System :: MacOS',
"Operating System :: Unix", # @TODO make it OS independant?
# 'Operating System :: OS Independent'
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
"Topic :: Scientific/Engineering :: Bio-Informatics",
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
]
dependencies = [
# 'refinegems>=2.0', # has all other needed dependancies
"refinegems>=2.0.0a0",
# @NOTE
# need to installed but install does not work with PyPi that way
"bofdat@git+https://github.com/draeger-lab/BOFdat", # our fork with hot fix(es)
"masschargecuration@git+https://github.com/Biomathsys/MassChargeCuration"
]
# @TODO: some kind of installation file / help?
# additional missing tools:
# EntrezDirect -> maybe change to Bio.Entrez or use refineGEMs functions?
# DIAMOND
[project.optional-dependencies]
# developer/docs installation dependancies
docs = ["accessible-pygments",
"sphinx",
"nbsphinx",
"sphinx_rtd_theme",
"pandoc",
"ipython",
"sphinxcontrib-bibtex",
"sphinx_copybutton",
"pip-tools"]
[project.urls]
repository = 'https://github.com/draeger-lab/SPECIMEN'
documentation = 'https://specimen.readthedocs.io/en/latest/'
"Bug Tracker" = 'https://github.com/draeger-lab/SPECIMEN/issues'
# homepage =
[project.scripts]
specimen = "specimen.cmd_access:cli"
# include data
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
"specimen.data.config" = ['*.yaml','*.yml']