17 lines
465 B
Python
17 lines
465 B
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'],
|
|
include_package_data=True,
|
|
zip_safe=False)
|