Skip to content

Commit e290eef

Browse files
Bump version: 0.2.0 → 0.2.1
1 parent acdd58a commit e290eef

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

setup.cfg

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.2.0
2+
current_version = 0.2.1
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,31 +15,31 @@ 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.8
3232
Programming Language :: Python :: 3.9
33-
Programming Language :: Python :: 3.10
34-
Programming Language :: Python :: 3.11
33+
Programming Language :: Python :: 3.10
34+
Programming Language :: Python :: 3.11
3535
Programming Language :: Python :: Implementation :: CPython
3636
Topic :: Scientific/Engineering
3737
Topic :: Scientific/Engineering :: Bio-Informatics
3838
license = LGPL-3.0
3939
description = FBC reference files for SBML model curation.
4040
long_description = file: README.rst
4141
long_description_content_type = text/x-rst
42-
keywords =
42+
keywords =
4343
modeling
4444
reproducibility
4545
SBML
@@ -48,58 +48,58 @@ keywords =
4848
[options]
4949
zip_safe = True
5050
python_requires = >=3.8
51-
install_requires =
51+
install_requires =
5252
pymetadata>=0.3.6
5353
pandas>=1.4.2
5454
cobra==0.26.0
5555
cameo==0.13.6
56-
56+
5757
fastapi>=0.87.0
5858
uvicorn>=0.19.0
5959
python-multipart>=0.0.5
6060
celery>=5.2.7
6161
flower>=1.2.0
6262
redis>=4.3.4
6363
orjson>=3.8.1
64-
64+
6565
jinja2>=3.1.2
6666
markupsafe>=2.1.1
67-
67+
6868
numpy>=1.23.4
6969
rich>=12.6.0
7070
pydantic>=1.10.2
71-
tests_require =
71+
tests_require =
7272
tox
7373
packages = find:
74-
package_dir =
74+
package_dir =
7575
= src
7676
include_package_data = True
7777

7878
[options.packages.find]
7979
where = src
8080

8181
[options.entry_points]
82-
console_scripts =
82+
console_scripts =
8383
runfrog_examples = fbc_curation.examples:run_examples
8484
runfrog = fbc_curation.runfrog:main
8585

8686
[options.extras_require]
87-
development =
87+
development =
8888
black
8989
bump2version
9090
isort
9191
tox
9292
pytest>=6.1
9393
pytest-cov>=2.8.1
94-
pytest-celery
94+
pytest-celery
9595

9696
[bdist_wheel]
9797
universal = 1
9898

9999
[bumpversion:part:release]
100100
optional_value = placeholder
101101
first_value = placeholder
102-
values =
102+
values =
103103
placeholder
104104
a
105105

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.2.0")
7+
setup(version="0.2.1")

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.2.0"
4+
__version__ = "0.2.1"
55
__citation__ = "https://doi.org/10.5281/zenodo.3708271"
66

77

0 commit comments

Comments
 (0)