Skip to content

Commit 8631064

Browse files
Bump version: 0.1.6 → 0.2.0
1 parent 6bdc37a commit 8631064

File tree

3 files changed

+29
-31
lines changed

3 files changed

+29
-31
lines changed

setup.cfg

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.1.6
2+
current_version = 0.2.0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)
66
\.(?P<minor>\d+)
77
\.(?P<patch>\d+)
88
(?P<release>[a]*)(?P<num>\d*)
9-
serialize =
9+
serialize =
1010
{major}.{minor}.{patch}{release}{num}
1111
{major}.{minor}.{patch}
1212
tag_name = {new_version}
@@ -15,30 +15,30 @@ tag_name = {new_version}
1515
name = fbc_curation
1616
url = https://github.com/matthiaskoenig/fbc_curation
1717
download_url = https://pypi.org/project/fbc-curation
18-
project_urls =
18+
project_urls =
1919
Source Code = https://github.com/matthiaskoenig/fbc_curation
2020
Documentation = https://github.com/matthiaskoenig/fbc_curation
2121
Bug Tracker = https://github.com/matthiaskoenig/fbc_curation/issues
2222
author = Matthias Koenig
2323
author_email = konigmatt@googlemail.com
2424
maintainer = Matthias Koenig
2525
maintainer_email = konigmatt@googlemail.com
26-
classifiers =
26+
classifiers =
2727
Development Status :: 4 - Beta
2828
Intended Audience :: Science/Research
2929
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
3030
Operating System :: OS Independent
3131
Programming Language :: Python :: 3.7
32-
Programming Language :: Python :: 3.8
33-
Programming Language :: Python :: 3.9
32+
Programming Language :: Python :: 3.8
33+
Programming Language :: Python :: 3.9
3434
Programming Language :: Python :: Implementation :: CPython
3535
Topic :: Scientific/Engineering
3636
Topic :: Scientific/Engineering :: Bio-Informatics
3737
license = LGPL-3.0
3838
description = FBC reference files for SBML model curation.
3939
long_description = file: README.rst
4040
long_description_content_type = text/x-rst
41-
keywords =
41+
keywords =
4242
modeling
4343
reproducibility
4444
SBML
@@ -47,45 +47,43 @@ keywords =
4747
[options]
4848
zip_safe = True
4949
python_requires = >=3.7
50-
install_requires =
50+
install_requires =
5151
pymetadata>=0.2.9
52-
pandas>=1.3.0
53-
cobra==0.25.0
52+
pandas>=1.3.0
53+
cobra==0.25.0
5454
cameo==0.13.6
55-
56-
fastapi>=0.75.0
55+
56+
fastapi>=0.75.0
5757
uvicorn>=0.17.0
5858
python-multipart>=0.0.5
59-
celery>=5.2.6
60-
flower>=1.0.0
61-
redis>=4.2.2
62-
orjson>=3.6.8
63-
64-
# for celery
65-
jinja2>=3.1.0
66-
markupsafe>=2.1.0
67-
59+
celery>=5.2.6
60+
flower>=1.0.0
61+
redis>=4.2.2
62+
orjson>=3.6.8
63+
64+
jinja2>=3.1.0
65+
markupsafe>=2.1.0
66+
6867
numpy>=1.22.0
69-
rich>=12.3.0
70-
pydantic>=1.9.0
71-
72-
tests_require =
68+
rich>=12.3.0
69+
pydantic>=1.9.0
70+
tests_require =
7371
tox
7472
packages = find:
75-
package_dir =
73+
package_dir =
7674
= src
7775
include_package_data = True
7876

7977
[options.packages.find]
8078
where = src
8179

8280
[options.entry_points]
83-
console_scripts =
81+
console_scripts =
8482
runfrog_examples = fbc_curation.examples:run_examples
8583
runfrog = fbc_curation.runfrog:main
8684

8785
[options.extras_require]
88-
development =
86+
development =
8987
black
9088
bump2version
9189
isort
@@ -99,7 +97,7 @@ universal = 1
9997
[bumpversion:part:release]
10098
optional_value = placeholder
10199
first_value = placeholder
102-
values =
100+
values =
103101
placeholder
104102
a
105103

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
if __name__ == "__main__":
7-
setup(version="0.1.6")
7+
setup(version="0.2.0")

src/fbc_curation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from pathlib import Path
22

33
__software__ = "fbc_curation"
4-
__version__ = "0.1.6"
4+
__version__ = "0.2.0"
55
__citation__ = "https://doi.org/10.5281/zenodo.3708271"
66

77

0 commit comments

Comments
 (0)