From 00499fa0d7bccca0469d5910b9ccc1156fa501cc Mon Sep 17 00:00:00 2001 From: gcarq Date: Thu, 28 Sep 2017 23:26:56 +0200 Subject: [PATCH] add setup.py --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..79aacb7f9 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +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)