-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
36 lines (32 loc) · 1.08 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
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
DATA_FILE_LOCATION = '/usr/share/linux_thermaltake_rgb'
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,
long_description_content_type="text/markdown",
install_requires=[
"pyyaml",
"GObject",
"psutil",
"pyusb",
"numpy"
],
entry_points="""
[console_scripts]
linux-thermaltake-rgb=linux_thermaltake_rgb.daemon.main:main
""",
data_files=[(DATA_FILE_LOCATION, ['linux_thermaltake_rgb/assets/linux-thermaltake-rgb.service']),
(DATA_FILE_LOCATION, ['linux_thermaltake_rgb/assets/config.yml'])]
)