-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
37 lines (36 loc) · 1.14 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
from setuptools import setup
from setuptools.command.install import install
from distutils import log # needed for outputting information messages
import os
setup(name='hue_plus',
version='1.4.5',
description='A utility to control the NZXT Hue+ in Linux',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX :: Linux',
],
url='http://github.com/kusti8/hue-plus',
author='Gustav Hansen',
author_email='[email protected]',
license='GPL3',
packages=['hue_plus'],
package_data = {'package': ["things/*"]},
entry_points={
'console_scripts': [
'hue = hue_plus.hue:main'
],
'gui_scripts': [
'hue_ui = hue_plus.hue_ui:main'
]
},
install_requires=[
'pyserial',
'pyqt5',
'pyaudio',
'appdirs'
],
keywords = 'nzxt hue hue-plus hue_plus hue+',
include_package_data=True,
zip_safe=False)