|
|
|
|
@ -59,7 +59,7 @@ setup(name='freqtrade',
|
|
|
|
|
license='GPLv3',
|
|
|
|
|
packages=['freqtrade'],
|
|
|
|
|
setup_requires=['pytest-runner', 'numpy'],
|
|
|
|
|
tests_require=['pytest', 'pytest-mock', 'pytest-cov'],
|
|
|
|
|
tests_require=['pytest', 'pytest-asyncio', 'pytest-cov', 'pytest-mock', ],
|
|
|
|
|
install_requires=[
|
|
|
|
|
# from requirements-common.txt
|
|
|
|
|
'ccxt>=1.18.1080',
|
|
|
|
|
@ -99,8 +99,12 @@ setup(name='freqtrade',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
|
'Environment :: Console',
|
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
|
'Operating System :: Unix',
|
|
|
|
|
'Topic :: Office/Business :: Financial :: Investment',
|
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
|
])
|
|
|
|
|
|