-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
107 lines (97 loc) · 2.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
build-backend = "setuptools.build_meta"
requires = [
'setuptools >=39.2',
'rich >=12.4.0',
'pyhmmer ~=0.11.0',
'wheel >=0.30'
]
[project]
name = "gecco-tool"
dynamic = ["version"]
description = "Gene Cluster prediction with Conditional random fields."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Typing :: Typed",
]
dependencies = [
"biopython ~=1.73",
"docopt ~=0.6.2",
"importlib-metadata >=4.0 ; python_version < '3.10'",
"importlib-resources >=1.0 ; python_version < '3.9'",
"numpy >=1.0,<3.0",
"polars ~=1.0",
"psutil ~=6.0",
"pyhmmer ~=0.11.0",
"pyrodigal ~=3.0",
"rich >=12.4.0",
"scikit-learn ~=1.0",
"scipy ~=1.4",
"sklearn-crfsuite ~=0.3.6",
]
[project.urls]
"Repository" = "https://github.com/zellerlab/GECCO"
"Bug Tracker" = "https://github.com/zellerlab/GECCO/issues"
"Changelog" = "https://github.com/zellerlab/GECCO/blob/master/CHANGELOG.md"
"Coverage" = "https://codecov.io/gh/zellerlab/GECCO/"
"Builds" = "https://git.embl.de/grp-zeller/GECCO/-/pipelines"
"Preprint" = "https://www.biorxiv.org/content/10.1101/2021.05.03.442509v1"
[project.optional-dependencies]
train = [
"statsmodels >=0.13,<0.15",
]
[project.entry-points.console_scripts]
gecco = "gecco.cli:main"
[project.entry-points."gecco.cli.commands"]
annotate = "gecco.cli.commands.annotate:Annotate"
convert = "gecco.cli.commands.convert:Convert"
cv = "gecco.cli.commands.cv:Cv [train]"
run = "gecco.cli.commands.run:Run"
train = "gecco.cli.commands.train:Train [train]"
help = "gecco.cli.commands.help:Help"
predict = "gecco.cli.commands.predict:Predict"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
include = ["gecco"]
exclude = ["docs*", "tests*"]
[tool.setuptools.dynamic]
version = {attr = "gecco.__version__"}
[tool.coverage.report]
include = ["gecco/*"]
omit = ["tests/*"]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if typing.TYPE_CHECKING:",
"@abc.abstractmethod",
"@abc.abstractproperty",
"raise NotImplementedError",
"return NotImplemented",
"raise UnexpectedError",
"raise AllocationError",
]
[tool.mypy]
disallow_any_decorated = true
disallow_any_generics = true
disallow_any_unimported = false
disallow_subclassing_any = false
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_return_any = true