-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
57 lines (43 loc) · 1.32 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
from setuptools import setup, find_packages
import ite8291r3_ctl
with open("README.md") as f:
long_description = f.read()
setup(
name='ite8291r3-ctl',
version=ite8291r3_ctl.__version__,
description='ITE 8291 (rev 0.03) userspace driver',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pobrn/ite8291r3-ctl',
license='GPLv2',
author='Barnabás Pőcze',
author_email='[email protected]',
keywords=['ITE', 'ITE8291', 'RGB', 'keyboard', 'backlight', 'linux'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: Utilities',
],
entry_points={
'console_scripts': ['ite8291r3-ctl = ite8291r3_ctl.__main__:main'],
},
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'pyusb',
],
extras_require={
'mode-screen': ['python-xlib', 'Pillow'],
},
project_urls={
'Source': 'https://github.com/pobrn/ite8291r3-ctl',
'Bug Reports': 'https://github.com/pobrn/ite8291r3-ctl/issues',
}
)