-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (30 loc) · 1.01 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
from setuptools import setup
setup(name='vickitrix',
version='0.1.5',
description='trade crypto on GDAX based on tweets',
url='http://github.com/nellore/vickitrix',
download_url = 'https://github.com/nellore/vickitrix/tarball/0.1.5',
author='Abhi Nellore',
author_email='[email protected]',
license='MIT',
packages=['vickitrix'],
package_data={'vickitrix': ['*.py', './rules/*']},
zip_safe=True,
install_requires=[
'twython', 'gdax', 'pycrypto'
],
entry_points={
'console_scripts': [
'vickitrix=vickitrix:go',
],},
keywords=['bitcoin', 'btc', 'ethereum', 'eth', 'twitter'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: MacOS',
'Operating System :: Unix',
'Topic :: Utilities'
]
)