-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(name='pywhale',
version='0.7',
description='python wrapper for Whaleclub.co exchange platform API',
url='https://github.com/logan169/PyWhale',
author='Logan Schwartz, ',
author_email='[email protected]',
license='GPLv3',
python_requires='>=3',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Office/Business',
'Topic :: Office/Business :: Financial'
],
keywords='python python3 whaleclub crypto pywhale trade trading api bitcoin wrapper',
packages= find_packages(),
include_package_data=True,
install_requires=['requests', 'statistics'],
zip_safe=False)