-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
97 lines (82 loc) · 1.85 KB
/
setup.cfg
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
[bumpversion]
current_version = 0.16.0
commit = True
tag = True
[metadata]
name = q2-micom
author = Christian Diener
author_email = mail@cdiener.com,
description = QIIME 2 plugin for metabolic modeling of microbial communities.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
url = https://github.com/micom-dev/q2-micom
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords =
microbiome
modeling
metabolism
community
[options]
zip_safe = False
packages = find:
python_requires = >=3.6
install_requires =
cobra>=0.29.0
micom>=0.37.0
jinja2>=2.10.3
qiime2>=2023.2
rich>=6.0
pandas>=1.0
numpy<2.0
tests_require =
coverage
pytest
pytest-cov
flake8
[options.package_data]
q2_micom =
citations.bib
[options.entry_points]
qiime2.plugins =
q2-micom = q2_micom.plugin_setup:plugin
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:q2_micom/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[tool:pytest]
filterwarnings =
ignore::DeprecationWarning
ignore::FutureWarning
[bdist_wheel]
universal = 0
[coverage:run]
source = q2_micom
branch = True
omit = q2_micom/tests/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self\.debug
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
ignore_errors = True
[flake8]
exclude = q2_micom/tests/*
max-line-length = 88
[pydocstyle]
convention = numpy