-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.cfg
108 lines (100 loc) · 2.26 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
100
101
102
103
104
105
106
107
108
[metadata]
name = memote
url = https://github.com/opencobra/memote
download_url = https://pypi.org/project/memote/
project_urls =
Source Code = https://github.com/opencobra/memote
Documentation = https://memote.readthedocs.io
Bug Tracker = https://github.com/opencobra/memote/issues
author = Moritz E. Beber
author_email = midnighter@posteo.net
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Bio-Informatics
license = Apache-2.0
description = the genome-scale metabolic model test suite
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
memote
metabolic model
constraint-based
COBRA
test suite
quality control
quality assurance
[options]
zip_safe = False
install_requires =
click
click-configfile
click-log
importlib_resources >=1.3; python_version < "3.9"
six
future
pytest >=4.0
gitpython
PyGithub ~= 1.55
pandas
Jinja2
cookiecutter
cobra >=0.17
ruamel.yaml >=0.15
sympy
sqlalchemy
requests
numpydoc
pylru
pandera ~=0.18
jsonschema ~=4.20
depinfo ~=2.2
requests
python_requires = >=3.6
tests_require =
tox
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.package_data]
memote.experimental.schemata =
*.json
memote.suite =
tests/*.py
memote.suite.templates =
*.html
*.yml
memote.support.data =
*.csv
*.json
[options.entry_points]
console_scripts =
memote = memote.suite.cli.runner:cli
[options.extras_require]
development =
black
isort
tox
[bdist_wheel]
universal = 1
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = src/memote/_version.py
versionfile_build = memote/_version.py
tag_prefix =
parentdir_prefix = memote-