Skip to content

Commit

Permalink
Style: Changes to setup.py and setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
dileep-kishore committed Nov 23, 2018
1 parent 4d948db commit c4d514c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 31 deletions.
2 changes: 1 addition & 1 deletion pyssa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """Dileep Kishore, Srikiran Chandrasekaran"""
__email__ = "k.dileep1994@gmail.com"
__version__ = "0.2.0"
__version__ = "__version__ = '0.3.0'"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.3.0
commit = True
tag = True

Expand Down
50 changes: 21 additions & 29 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit c4d514c

Please sign in to comment.