This repository was archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.29 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.29 KB
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
#!/usr/bin/python
from setuptools import setup, find_packages
install_requires = \
[
'websockets>=6.0',
'signalr-client-aio>=0.0.1.6.1'
]
setup(
name='bittrex-websocket-aio',
version='0.0.0.3.0',
author='Stanislav Lazarov',
author_email='s.a.lazarov@gmail.com',
license='MIT',
url='https://github.com/slazarov/python-bittrex-websocket-aio',
packages=find_packages(exclude=['tests*']),
install_requires=install_requires,
description='The unofficial Python websocket (AsyncIO) client for the Bittrex Cryptocurrency Exchange',
download_url='https://github.com/slazarov/python-bittrex-websocket-aio.git',
keywords=['bittrex', 'bittrex-websocket', 'orderbook', 'trade', 'bitcoin', 'ethereum', 'BTC', 'ETH', 'client',
'websocket', 'exchange', 'crypto', 'currency', 'trading', 'async', 'aio'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)