-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (67 loc) · 1.86 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cocopye"
version = "0.5.0"
authors = [
{ name = "Niklas Birth, Nicolina Leppich, Dr. Peter Meinicke" },
]
maintainers = [
{ name = "Niklas Birth", email = "[email protected]" },
]
description = "Feature-based prediction of genome quality indices"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["bioinformatics", "biology", "microbiology", "metagenomics", "genome", "genome quality"]
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 4 - Beta"
]
dependencies = [
"numpy>=1.23",
"numba>=0.56.4",
"biopython==1.81",
"scikit-learn==1.3.1",
"pandas",
"packaging",
"appdirs~=1.4.4",
"tomlkit~=0.11.6",
"requests~=2.31.0",
"tqdm~=4.65.0",
"numba-progress==1.0.0",
]
[project.urls]
Homepage = "https://cocopye.uni-goettingen.de"
Source = "https://github.com/gobics/cocopye"
Documentation = "https://github.com/gobics/cocopye/wiki"
[project.optional-dependencies]
web = [
"celery[redis]~=5.3.1",
"uvicorn~=0.22.0",
"fastapi~=0.99.1",
"python-multipart~=0.0.6",
"websockets~=11.0.3",
"werkzeug",
"Jinja2~=3.1.2"
]
[project.scripts]
cocopye = "cli:main"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.mypy]
files = "src"
plugins = "numpy.typing.mypy_plugin"
strict = true
disallow_any_explicit = true
disallow_any_generics = true
[[tool.mypy.overrides]]
module = ["tomlkit", "Bio", "_io", "numba", "numba.typed"]
ignore_missing_imports = true