-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
50 lines (45 loc) · 1.6 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
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
# Package meta-data.
NAME = 'cryptowatch'
DESCRIPTION = 'Track prices and account balances for multiple cryptocurrencies'
URL = 'https://github.com/alexanderepstein/cryptowatch'
EMAIL = '[email protected]'
AUTHOR = 'Alexander Epstein'
VERSION = '0.0.11'
long_description = "For information on this package refer to the github: https://github.com/alexanderepstein/cryptowatch"
# What packages are required for this module to be executed?
required = [
'Adafruit_GPIO', 'requests', 'terminaltables', "colorclass"
]
# Dependencies only for versions less than Python 2.7:
# if sys.version_info < (2, 7):
# required.append('requests[security]')
# Where the magic happens:
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=find_packages(exclude=('tests',)),
entry_points={
'console_scripts': ['cryptowatch=cryptoConsole.cryptowatch:main'],
},
keywords = ['cryptocurrencies', 'monitor', 'rpi', 'console'], # arbitrary keywords
install_requires=required,
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy'
],
)