-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
41 lines (39 loc) · 1.32 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
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='three-commas',
packages=['three_commas',
'three_commas.api',
'three_commas.api.ver1',
'three_commas.api.v2',
'three_commas.model',
'three_commas.utils',
'three_commas.streams',
],
version='0.2.9',
description='Python api wrapper for 3commas with extended functionality in the api, models, error handling',
url='https://github.com/badass-blockchain/python-three-commas',
author='Sergey Gerodes',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['some_module'],
package_dir={'': 'src'},
keywords=['python', '3commas', 'api', 'crypto', 'cryptocurrency',
'three commas', 'bitcoin', 'trading', 'btc', 'eth'],
python_requires='>=3.8',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
install_requires=[
'py3cw',
'cachetools',
'aenum',
'websockets'
]
)