-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (45 loc) · 1.51 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
from setuptools import setup
#import os
#PROJECT_ROOT, _ = os.path.split(__file__)
REVISION = '0.3.1'
PROJECT_NAME = 'blink1'
PROJECT_AUTHORS = "Salim Fadhley, Tod E. Kurt"
PROJECT_EMAILS = '[email protected], [email protected]'
PROJECT_URL = "https://github.com/todbot/blink1-python"
SHORT_DESCRIPTION = 'Official blink(1) control library'
#try:
# DESCRIPTION = open(os.path.join(PROJECT_ROOT, "README.md")).read()
#except IOError:
# DESCRIPTION = SHORT_DESCRIPTION
setup(
name=PROJECT_NAME.lower(),
version=REVISION,
author=PROJECT_AUTHORS,
author_email=PROJECT_EMAILS,
packages=['blink1', 'blink1_tests'],
zip_safe=True,
include_package_data=False,
install_requires=['hidapi>=0.7.99', 'click', 'webcolors'],
test_suite='nose.collector',
tests_require=['mock', 'nose', 'coverage'],
url=PROJECT_URL,
description=SHORT_DESCRIPTION,
long_description_markdown_filename='README.md', # uses setuptools-markdown
license='MIT',
entry_points={
'console_scripts': [
'blink1-flash = blink1.flash:flash',
'blink1-shine = blink1.shine:shine'
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
],
)