-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (25 loc) · 1022 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="hyperx_keyboard_rgb",
version="1.4",
author="K4CZP3R",
author_email="[email protected]",
description="Control your keyboard rgb lights using hidapi",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/K4CZP3R/hyperx-keyboard-rgb",
packages=setuptools.find_packages(include=['hyperx_keyboard_rgb', 'hyperx_keyboard_rgb.*']),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.6',
install_requires=[
'hidapi @ git+https://github.com/K4CZP3R/cython-hidapi@3356dbe46eb199151fa969ca773875e191142459#egg=hidapi'
],
dependency_links=[
'git+https://github.com/K4CZP3R/cython-hidapi@3356dbe46eb199151fa969ca773875e191142459#egg=hidapi']
)