forked from matthiaskoenig/sbmlutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
106 lines (97 loc) · 2.33 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
[bumpversion]
current_version = 0.4.6
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 = sbmlutils
url = https://github.com/matthiaskoenig/sbmlutils
download_url = https://pypi.org/project/sbmlutils
project_urls =
Source Code = https://github.com/matthiaskoenig/sbmlutils
Documentation = https://sbmlutils.readthedocs.io
Bug Tracker = https://github.com/matthiaskoenig/sbmlutils/issues
author = Matthias Koenig
author_email = [email protected]
maintainer = Matthias Koenig
maintainer_email = [email protected]
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
license = LGPL-3.0
description = sbmlutils are utilities for working with SBML.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
modeling
standardization
SBML
[options]
zip_safe = True
python_requires = >=3.7
install_requires =
numpy>=1.19.3
scipy>=1.6.0
matplotlib>=3.3.3
pandas>=1.2.1
tabulate>=0.8.7
Jinja2>=2.11.2
requests>=2.24.0
beautifulsoup4>=4.9.3
openpyxl>=3.0.6
xmlschema>=1.2.3
xmltodict>=0.12.0
python-libsbml-experimental>=5.19.0
phrasedml>=1.1.0
antimony>=2.12.0
libroadrunner>=2.0.5
pytest>=6.2.1
tests_require =
tox
pytest
setup_requires =
pytest-runner
packages = find:
package_dir =
= src
include_package_data = True
[aliases]
test = pytest
[options.packages.find]
where = src
[options.extras_require]
development =
black
bump2version
isort
tox
pytest>=6.1
[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/sbmlutils/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"