stable/setup.py

49 lines
1.6 KiB
Python
Raw Normal View History

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',
url='https://github.com/gcarq/freqtrade',
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'],
install_requires=[
2017-11-08 23:31:53 +00:00
'python-bittrex==0.2.0',
'SQLAlchemy==1.1.13',
2017-10-21 08:07:29 +00:00
'python-telegram-bot==8.1.1',
'arrow==0.10.0',
'requests==2.18.4',
'urllib3==1.22',
'wrapt==1.10.11',
'pandas==0.20.3',
'scikit-learn==0.19.0',
'scipy==0.19.1',
'jsonschema==2.6.0',
'TA-Lib==0.4.10',
2017-11-05 19:54:41 +00:00
'tabulate==0.8.1',
],
dependency_links=[
2017-11-08 23:31:53 +00:00
"git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex-0.2.0"
],
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',
])