mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
15 lines
399 B
Python
15 lines
399 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'],
|
||
|
zip_safe=False)
|