diff --git a/pyssa/__init__.py b/pyssa/__init__.py index 2b36948..160de5e 100644 --- a/pyssa/__init__.py +++ b/pyssa/__init__.py @@ -4,4 +4,4 @@ __author__ = """Dileep Kishore, Srikiran Chandrasekaran""" __email__ = "k.dileep1994@gmail.com" -__version__ = "0.2.0" +__version__ = "__version__ = '0.3.0'" diff --git a/setup.cfg b/setup.cfg index 873fbbb..447241a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 commit = True tag = True diff --git a/setup.py b/setup.py index 9d8f381..f48ff5e 100644 --- a/setup.py +++ b/setup.py @@ -5,51 +5,43 @@ import numpy -with open('README.rst') as readme_file: +with open("README.rst") as readme_file: readme = readme_file.read() -with open('HISTORY.rst') as history_file: +with open("HISTORY.rst") as history_file: history = history_file.read() -requirements = [ - 'numpy', - 'numba', -] +requirements = ["numpy", "numba"] -setup_requirements = [ -] +setup_requirements = [] -test_requirements = [ - 'pytest', - 'pytest-runner', - 'pytest-benchmark', -] +test_requirements = ["pytest", "pytest-runner", "pytest-benchmark"] setup( author="Dileep Kishore, Srikiran Chandrasekaran", - author_email='k.dileep1994@gmail.com', + author_email="k.dileep1994@gmail.com", classifiers=[ - 'Development Status :: 2 - Pre-Alpha', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: Apache Software License', - 'Natural Language :: English', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', + "Development Status :: 2 - Pre-Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Natural Language :: English", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ], description="Python package for stochastic simulations", install_requires=requirements, license="Apache Software License 2.0", - long_description=readme + '\n\n' + history, + long_description=readme + "\n\n" + history, include_package_data=True, - keywords='pyssa', - name='pyssa', - packages=find_packages(include=['pyssa']), + keywords="pyssa", + name="pyssa", + packages=find_packages(include=["pyssa"]), setup_requires=setup_requirements, - test_suite='tests', + test_suite="tests", tests_require=test_requirements, - url='https://github.com/dileep-kishore/pyssa', - version='0.2.0', + url="https://github.com/dileep-kishore/pyssa", + version="0.3.0", zip_safe=False, )