forked from Dan-Ilie/Coinex_api_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.1 KB
/
setup.py
File metadata and controls
28 lines (26 loc) · 1.1 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
from setuptools import setup
setup(
name='Coinex_api_client',
version='0.7',
description='An easy API client for the Coinex trading platform',
url='https://github.com/Dan-Ilie/Coinex_api_client',
author='Daniel Ilie',
author_email='daniel.ilie.gl@gmail.com',
license='LGPL',
packages=['Coinex_api_client'],
package_data={'Coinex_api_client': ['API/*.py',
'API/AccountAPI/*.py',
'API/CommonAPI/*.py',
'API/ContractAPI/*.py',
'API/MarginAPI/*.py',
'API/MarketAPI/*.py',
'API/TradingAPI/*.py',
'tools/*.py']},
install_requires=['requests>=2.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
],
)