forked from honzajavorek/fiobank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (51 loc) · 1.35 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import sys
from setuptools import setup
try:
from semantic_release import setup_hook
setup_hook(sys.argv)
except ImportError:
message = "Unable to locate 'semantic_release', releasing won't work"
print(message, file=sys.stderr)
version = '3.0.0'
install_requires = [
'requests',
]
tests_require = [
'pytest-runner',
'pytest',
'pylama',
'responses',
'mock',
'coveralls',
'pytest-cov',
]
release_requires = [
'python-semantic-release',
]
setup(
name='fiobank',
version=version,
description='Fio Bank API in Python',
long_description=open('README.rst').read(),
author='Honza Javorek',
author_email='[email protected]',
url='https://github.com/honzajavorek/fiobank',
license='ISC',
py_modules=('fiobank',),
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
'release': release_requires,
},
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
),
keywords='bank api wrapper sdk fio'
)