-
Notifications
You must be signed in to change notification settings - Fork 199
/
setup.py
executable file
·48 lines (45 loc) · 1.3 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.0.6'
setup(
name='stakemachine',
version=VERSION,
description='Trading bot infrastructure for the DEX (BitShares)',
long_description=open('README.md').read(),
download_url='https://github.com/xeroc/stakemachine/tarball/' + VERSION,
author='Fabian Schuh',
author_email='[email protected]',
maintainer='Fabian Schuh',
maintainer_email='[email protected]',
url='http://www.github.com/xeroc/stakemachine',
keywords=['stake', 'bot', 'trading', 'api', 'blog', 'blockchain'],
packages=[
"stakemachine",
"stakemachine.strategies",
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
],
entry_points={
'console_scripts': [
'stakemachine = stakemachine.cli:main',
],
},
install_requires=[
"bitshares>=0.1.7",
"uptick>=0.1.4",
"prettytable",
"click",
"click-datetime",
"colorama",
"tqdm",
"pyyaml",
"sqlalchemy",
"appdirs"
],
include_package_data=True,
)