-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.12 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
import os.path
from setuptools import setup, find_packages
__DIR__ = os.path.abspath(os.path.dirname(__file__))
setup(
name = 'auraio',
version = '0.1.0',
description = 'Communicates important information using the atmospheric lighting of an RGB LED strip connected to a Raspberry Pi',
url = 'https://github.com/mikeshultz/auraio',
author = 'Mike Shultz',
author_email = '[email protected]',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Topic :: System :: Monitoring',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords = 'raspberrypi led lighting monitoring',
packages = find_packages(exclude = ['build', 'dist']),
install_requires = open("requirements.txt").readlines(),
entry_points={
'console_scripts': [
'auraio=auraio.auraio:main',
],
},
)