diff --git a/cfg4py/__init__.py b/cfg4py/__init__.py index 13aac13..6210d23 100644 --- a/cfg4py/__init__.py +++ b/cfg4py/__init__.py @@ -6,7 +6,7 @@ __author__ = """Aaron Yang""" __email__ = 'code@jieyu.ai' -__version__ = "__version__ = '0.6.1'" +__version__ = "__version__ = '0.7.0'" def get_instance(): diff --git a/setup.cfg b/setup.cfg index 298cdca..2fb9d4f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.7.0 commit = True tag = True diff --git a/setup.py b/setup.py index 47ed30d..246bc4b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """The setup script.""" -from setuptools import setup, find_packages +from setuptools import find_packages, setup with open('README.rst') as readme_file: readme = readme_file.read() @@ -34,7 +34,8 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], - description="A python config module support hierarchical configuration and multi-environment deployment", + description="A python config module support hierarchical configuration and " + "multi-environment deployment", install_requires=requirements, license="BSD license", long_description=readme + '\n\n' + history, @@ -46,7 +47,7 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/jieyu_tech/cfg4py', - version='0.6.1', + version='0.7.0', zip_safe=False, entry_points={ 'console_scripts': ['cfg4py=cfg4py.command_line:main']