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
35 lines (31 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1.04 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
35
import time
from distutils.core import setup
import os
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
VERSION = os.environ.get('TRAVIS_TAG') or '0.0.0-{}'.format(time.time())
setup(
name='linux_thermaltake_rgb',
version=VERSION,
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",
"gobject"
],
entry_points="""
[console_scripts]
linux-thermaltake-rgb=daemon.main:main
""",
data_files=[('/etc/udev/rules.d', ['assets/90-linux_thermaltake_rgb.rules']),
('/usr/lib/systemd/user', ['assets/linux-thermaltake-rgb.service']),
('/etc/linux_thermaltake_rgb', ['assets/config.yml'])]
)