Skip to content

Commit 8baee18

Browse files
committed
bump version
1 parent e847a78 commit 8baee18

File tree

1 file changed

+29
-28
lines changed

1 file changed

+29
-28
lines changed

setup.py

+29-28
Original file line numberDiff line numberDiff line change
@@ -3,56 +3,57 @@
33

44
try:
55
from semantic_release import setup_hook
6+
67
setup_hook(sys.argv)
78
except ImportError:
89
message = "Unable to locate 'semantic_release', releasing won't work"
910
print(message, file=sys.stderr)
1011

1112

12-
version = '3.0.0'
13+
version = "3.1.0"
1314

1415

1516
install_requires = [
16-
'requests',
17+
"requests",
1718
]
1819
tests_require = [
19-
'pytest-runner',
20-
'pytest',
21-
'pylama',
22-
'responses',
23-
'mock',
24-
'coveralls',
25-
'pytest-cov',
20+
"pytest-runner",
21+
"pytest",
22+
"pylama",
23+
"responses",
24+
"mock",
25+
"coveralls",
26+
"pytest-cov",
2627
]
2728
release_requires = [
28-
'python-semantic-release',
29+
"python-semantic-release",
2930
]
3031

3132

3233
setup(
33-
name='fiobank',
34+
name="fiobank",
3435
version=version,
35-
description='Fio Bank API in Python',
36-
long_description=open('README.rst').read(),
37-
author='Honza Javorek',
38-
author_email='[email protected]',
39-
url='https://github.com/honzajavorek/fiobank',
40-
license='ISC',
41-
py_modules=('fiobank',),
36+
description="Fio Bank API in Python",
37+
long_description=open("README.rst").read(),
38+
author="Honza Javorek",
39+
author_email="[email protected]",
40+
url="https://github.com/honzajavorek/fiobank",
41+
license="ISC",
42+
py_modules=("fiobank",),
4243
install_requires=install_requires,
4344
tests_require=tests_require,
4445
extras_require={
45-
'tests': tests_require,
46-
'release': release_requires,
46+
"tests": tests_require,
47+
"release": release_requires,
4748
},
4849
classifiers=(
49-
'Development Status :: 5 - Production/Stable',
50-
'Intended Audience :: Developers',
51-
'License :: OSI Approved :: ISC License (ISCL)',
52-
'Programming Language :: Python',
53-
'Programming Language :: Python :: 3',
54-
'Topic :: Software Development :: Libraries :: Python Modules',
55-
'Topic :: Internet',
50+
"Development Status :: 5 - Production/Stable",
51+
"Intended Audience :: Developers",
52+
"License :: OSI Approved :: ISC License (ISCL)",
53+
"Programming Language :: Python",
54+
"Programming Language :: Python :: 3",
55+
"Topic :: Software Development :: Libraries :: Python Modules",
56+
"Topic :: Internet",
5657
),
57-
keywords='bank api wrapper sdk fio'
58+
keywords="bank api wrapper sdk fio",
5859
)

0 commit comments

Comments
 (0)