-
-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 545 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 545 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_packages
setup(
name='cointrol',
version='0.0.1',
packages=find_packages(),
url='https://github.com/jakubroztocil/cointrol',
license='MIT',
author='Jakub Roztocil',
author_email='jakub@roztocil.co',
description='Realtime dashboard and Bitcoin trading bot for Bitstamp',
entry_points={
'console_scripts': [
'cointrol-server = cointrol.server.app:main',
'cointrol-trader = cointrol.trader.app:main',
],
},
)