forked from opencobra/memote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
151 lines (134 loc) · 2.75 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
[bumpversion]
current_version = 0.8.6
commit = True
tag = True
tag_name = {new_version}
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]?)(?P<num>\d*)
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
[metadata]
name = memote
url = https://github.com/opencobra/memote
download_url = https://pypi.org/pypi/memote/
author = Moritz E. Beber
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
license = Apache Software License Version 2.0
description = the genome-scale metabolic model test suite
long_description = file: README.rst
keywords =
memote
metabolic
constrained-based
model
COBRA
test suite
quality control
quality assurance
[options]
zip_safe = False
install_requires =
click<7.0
click-configfile
click-log
six
future
pytest>=3.1
gitpython
pandas>=0.20.1
Jinja2
cookiecutter
cobra>0.13.3
python-libsbml
ruamel.yaml>=0.15
travispy
pygithub
travis-encrypt
sympy
sqlalchemy
requests
importlib_resources
numpydoc
pylru
goodtables==1.0.0
depinfo
python_requires = >=2.7,!=3.1,!=3.2,!=3.3,!=3.4
tests_require =
pytest>=3.1
pytest-raises
pytest-cov
codecov
xlwt
XlsxWriter
packages = find:
[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
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
placeholder
a
[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:memote/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:docs/conf.py]
search = "{current_version}"
replace = "{new_version}"
[wheel]
universal = 1
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 80
exclude =
__init__.py
docs
[pydocstyle]
match_dir = memote
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
[isort]
line_length = 80
indent = 4
multi_line_output = 4
lines_after_import = 2
known_first_party = memote
known_third_party = cobra,libsbml,click_configfile
not_skip = __init__.py