2017-11-05 16:44:58 +00:00
|
|
|
from sys import version_info
|
2017-09-28 21:26:56 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2017-11-05 16:44:58 +00:00
|
|
|
if version_info.major == 3 and version_info.minor < 6 or \
|
|
|
|
version_info.major < 3:
|
|
|
|
print('Your Python interpreter must be 3.6 or greater!')
|
|
|
|
exit(1)
|
|
|
|
|
2017-09-28 21:26:56 +00:00
|
|
|
from freqtrade import __version__
|
|
|
|
|
|
|
|
|
|
|
|
setup(name='freqtrade',
|
|
|
|
version=__version__,
|
|
|
|
description='Simple High Frequency Trading Bot for crypto currencies',
|
2018-06-05 10:27:24 +00:00
|
|
|
url='https://github.com/freqtrade/freqtrade',
|
2017-09-28 21:26:56 +00:00
|
|
|
author='gcarq and contributors',
|
|
|
|
author_email='michael.egger@tsn.at',
|
|
|
|
license='GPLv3',
|
|
|
|
packages=['freqtrade'],
|
2017-09-28 21:47:51 +00:00
|
|
|
scripts=['bin/freqtrade'],
|
2017-09-30 13:58:31 +00:00
|
|
|
setup_requires=['pytest-runner'],
|
2017-10-02 16:17:54 +00:00
|
|
|
tests_require=['pytest', 'pytest-mock', 'pytest-cov'],
|
2017-09-29 18:07:50 +00:00
|
|
|
install_requires=[
|
2018-03-21 17:57:58 +00:00
|
|
|
'ccxt',
|
2017-11-08 23:33:22 +00:00
|
|
|
'SQLAlchemy',
|
|
|
|
'python-telegram-bot',
|
|
|
|
'arrow',
|
|
|
|
'requests',
|
|
|
|
'urllib3',
|
|
|
|
'wrapt',
|
|
|
|
'pandas',
|
|
|
|
'scikit-learn',
|
|
|
|
'scipy',
|
|
|
|
'jsonschema',
|
|
|
|
'TA-Lib',
|
|
|
|
'tabulate',
|
2017-11-11 14:29:31 +00:00
|
|
|
'cachetools',
|
2018-03-17 23:42:24 +00:00
|
|
|
'coinmarketcap',
|
2018-06-22 14:08:22 +00:00
|
|
|
'scikit-optimize',
|
2017-09-29 18:07:50 +00:00
|
|
|
],
|
2017-09-28 21:53:19 +00:00
|
|
|
include_package_data=True,
|
2017-09-29 18:15:54 +00:00
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
'Topic :: Office/Business :: Financial :: Investment',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
])
|