forked from chestm007/linux_thermaltake_riing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.1 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.1 KB
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
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='linux_thermaltake_rgb',
version='PROJECTVERSION',
packages=find_packages(),
url='https://github.com/chestm007/linux_thermaltake_rgb',
license='GPL-2.0',
author='Max Chesterfield',
author_email='chestm007@hotmail.com',
maintainer='Max Chesterfield',
maintainer_email='chestm007@hotmail.com',
description='python driver and daemon for thermaltake hardware products',
long_description=readme,
install_requires=[
"pyyaml",
"PyGObject",
"dbus-python",
"psutil",
"pyusb"
],
entry_points="""
[console_scripts]
linux-thermaltake-rgb=linux_thermaltake_rgb.daemon.main:main
""",
data_files=[('/etc/udev/rules.d', ['linux_thermaltake_rgb/assets/90-linux_thermaltake_rgb.rules']),
('/usr/lib/systemd/user', ['linux_thermaltake_rgb/assets/linux-thermaltake-rgb.service']),
('/etc/linux_thermaltake_rgb', ['linux_thermaltake_rgb/assets/config.yml'])]
)