-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
112 lines (100 loc) · 2.48 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
[bumpversion]
current_version = 0.2.3
commit = True
tag = True
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}
tag_name = {new_version}
[metadata]
name = fbc_curation
url = https://github.com/matthiaskoenig/fbc_curation
download_url = https://pypi.org/project/fbc-curation
project_urls =
Source Code = https://github.com/matthiaskoenig/fbc_curation
Documentation = https://github.com/matthiaskoenig/fbc_curation
Bug Tracker = https://github.com/matthiaskoenig/fbc_curation/issues
author = Matthias Koenig
author_email = konigmatt@googlemail.com
maintainer = Matthias Koenig
maintainer_email = konigmatt@googlemail.com
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
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 :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
license = LGPL-3.0
description = FBC reference files for SBML model curation.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
modeling
reproducibility
SBML
fbc
[options]
zip_safe = True
python_requires = >=3.8
install_requires =
pymetadata>=0.3.6
pandas>=1.4.2
cobra==0.26.0
cameo==0.13.6
fastapi>=0.87.0
uvicorn>=0.19.0
python-multipart>=0.0.5
celery>=5.2.7
flower>=1.2.0
redis>=4.3.4
orjson>=3.8.1
jinja2>=3.1.2
markupsafe>=2.1.1
numpy>=1.23.4
rich>=12.6.0
pydantic>=1.10.2
tests_require =
tox
packages = find:
package_dir =
= src
include_package_data = True
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
runfrog_examples = fbc_curation.examples:run_examples
runfrog = fbc_curation.runfrog:main
[options.extras_require]
development =
black
bump2version
isort
tox
pytest>=6.1
pytest-cov>=2.8.1
pytest-celery
[bdist_wheel]
universal = 1
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
placeholder
a
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:src/fbc_curation/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"