Skip to content

Commit 635ff9a

Browse files
Bump version: 0.1.2 → 0.1.3
1 parent 315925a commit 635ff9a

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

setup.cfg

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
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,15 +15,15 @@ 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)
@@ -37,7 +37,7 @@ license = LGPL-3.0
3737
description = FBC reference files for SBML model curation.
3838
long_description = file: README.rst
3939
long_description_content_type = text/x-rst
40-
keywords =
40+
keywords =
4141
modeling
4242
reproducibility
4343
SBML
@@ -46,30 +46,30 @@ keywords =
4646
[options]
4747
zip_safe = True
4848
python_requires = >=3.6
49-
install_requires =
49+
install_requires =
5050
pandas>=1.0.5
5151
cobra>=0.20.0
5252
cameo>=0.11.15
5353
optlang>=1.4.6
5454
numpy
5555
pyfiglet
56-
tests_require =
56+
tests_require =
5757
tox
5858
packages = find:
59-
package_dir =
59+
package_dir =
6060
= src
6161
include_package_data = True
6262

6363
[options.packages.find]
6464
where = src
6565

6666
[options.entry_points]
67-
console_scripts =
67+
console_scripts =
6868
fbc_curation_examples = fbc_curation.examples:run_examples
6969
fbc_curation = fbc_curation.curation:main
7070

7171
[options.extras_require]
72-
development =
72+
development =
7373
black
7474
bump2version
7575
isort
@@ -83,7 +83,7 @@ universal = 1
8383
[bumpversion:part:release]
8484
optional_value = placeholder
8585
first_value = placeholder
86-
values =
86+
values =
8787
placeholder
8888
a
8989

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

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

77
EXAMPLE_PATH = Path(__file__).parent.parent.parent / "examples"

0 commit comments

Comments
 (0)