-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
setup.py
26 lines (24 loc) · 1.04 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
from setuptools import setup
read_md = lambda f: open(f, 'r').read()
setup(name='poloniexapi',
version='0.5.9',
description='Poloniex API wrapper for Python 2.7 and 3 with websocket support',
long_description=read_md('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/s4w3d0ff/python-poloniex',
author='s4w3d0ff',
author_email="[email protected]",
license='GPL v2',
packages=['poloniex'],
install_requires=['requests', 'websocket_client==0.59.0'],
zip_safe=False,
keywords=['poloniex', 'poloniexapi', 'exchange', 'api', 'cryptocoin', 'tradebot', 'polo', 'websocket', 'rest', 'push'],
classifiers = [
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
]
)