-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (63 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read_file(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as r:
return r.read()
README = read_file("README.rst")
CHANGES = read_file("CHANGES.rst")
version = read_file("VERSION.txt").strip()
setup(
name="luma.cryptocurrency",
version=version,
author="Thijs Triemstra",
author_email="info@collab.nl",
description=("Monitor cryptocurrency statistics on tiny displays"),
long_description="\n\n".join([README, CHANGES]),
license="MIT",
keywords="raspberry rpi oled lcd led display screen spi i2c bitcoin btc cryptocurrency currency",
url="https://github.com/collab-project/luma.cryptocurrency",
download_url="https://github.com/collab-project/luma.cryptocurrency/tarball/" + version,
namespace_packages=['luma'],
packages=['luma.cryptocurrency'],
include_package_data=True,
entry_points={
'console_scripts': [
'luma-cryptocurrency = luma.cryptocurrency.console_script:main'
]
},
install_requires=[
'luma.core>=0.7.0',
'requests',
'dateutils'
],
extras_require={
'docs': [
'sphinx >= 1.5.1'
],
'qa': [
'rstcheck',
'flake8'
],
'test': [
'requests-mock',
'coverage>=4.0'
]
},
zip_safe=False,
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Topic :: Education",
"Topic :: System :: Hardware",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
]
)