-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 913 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 913 Bytes
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
from setuptools import *
from cexio.version import version
setup(
name='cexio',
version=version,
description='CEX.IO Client (WebSocket and REST API basic client functionality on Python3.5)',
url='https://github.com/cexioltd/CEX.IO-Client-Python3.5',
license='MIT License',
author='Yegor Parusymov',
author_email='yegor.parusymov@gmail.com',
install_requires=[
'websockets>=3.0',
'aiohttp>=0.21.5',
],
packages=['cexio'],
include_package_data=True,
platforms='any',
test_suite='cexio.test',
classifiers=[
'Programming Language :: Python',
'Development Status :: 1.0 - Beta',
'Natural Language :: English',
'Intended Audience :: traders, developers',
'License :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Client API',
'Topic :: Trading :: BitCoin',
],
)