-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
99 lines (85 loc) · 1.81 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
98
99
[bumpversion]
current_version = 1.5.1
commit = True
tag = True
[metadata]
name = course
description = Helpers for the ISB Virtual Microbiome series.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/gibbons-lab/2021_microbiome_course_data
author = Christian Diener
author_email = [email protected]
license = Apache License 2.0
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
microbiome
microbiota
modeling
metabolism
[options]
packages = find:
zip_safe = True
python_requires = >=3.6
install_requires =
cobra>=0.20.1
jinja2>=2.10.0
scikit-learn>=0.22.0
seaborn>=0.11
scipy>=1.7.1
symengine>=0.6.1
requests>=2.0
umap-learn
scikit-bio
tests_require =
coverage
pytest
pytest-cov
[options.packages.find]
exclude =
docs
tests
[options.entry_points]
console_scripts =
carve = course.carve_shim:main
bootstrap = course.bootstrap:main
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[tool:pytest]
filterwarnings =
ignore::DeprecationWarning
ignore::FutureWarning
[bdist_wheel]
universal = 0
[coverage:run]
source = course
branch = True
[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 = tests/*, docs/*, versioneer.py, _version.py
max-line-length = 88
ignore =
E203
W503
D202
[pydocstyle]
convention = numpy