mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
from setuptools import setup
|
|
|
|
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'],
|
|
scripts=['bin/freqtrade'],
|
|
test_suite='nose.collector',
|
|
tests_require=['nose'],
|
|
install_requires=[
|
|
'python-bittrex==0.1.3',
|
|
'SQLAlchemy==1.1.13',
|
|
'python-telegram-bot==8.0',
|
|
'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',
|
|
],
|
|
dependency_links=[
|
|
"git+https://github.com/ericsomdahl/python-bittrex.git@d7033d0#egg=python-bittrex-0.1.3"
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=False)
|