forked from VladKochetov007/quick_trade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as file:
long_desc = file.read()
__version__ = "7.0.7"
setup(
name='quick_trade',
author="Vlad Kochetov",
author_email='[email protected]',
packages=find_packages(),
version=__version__,
description='Library for easy management and customization of algorithmic trading.',
long_description=long_desc,
long_description_content_type="text/markdown",
project_urls={
'Documentation': 'https://vladkochetov007.github.io/quick_trade/#/',
'Source': 'https://github.com/VladKochetov007/quick_trade',
'Twitter': 'https://twitter.com/quick_trade_tw',
'Bug Tracker': 'https://github.com/VladKochetov007/quick_trade/issues'
},
install_requires=[
'numpy==1.21.4',
'plotly==5.4.0',
'pandas==1.3.5',
'ta==0.8.0',
'tqdm==4.62.3',
'ccxt==1.63.77',
],
download_url=f'https://github.com/VladKochetov007/quick_trade/archive/{__version__}.tar.gz',
keywords=[
'technical-analysis',
'python3',
'trading',
'trading-bot',
'trading',
'binance-trading',
'ccxt',
],
license='cc-by-sa-4.0',
classifiers=[
'Intended Audience :: Financial and Insurance Industry',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3',
],
python_requires='>=3.0',
)