first package
This commit is contained in:
parent
c3ed9af8a0
commit
2ce556f9fc
4 changed files with 21 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
wheel = [0, 0]
|
wheel = [0, 0]
|
||||||
logo = [0, 1]
|
logo = [0, 1]
|
||||||
|
|
||||||
|
# Left stripe
|
||||||
l0 = [0, 2]
|
l0 = [0, 2]
|
||||||
l1 = [0, 3]
|
l1 = [0, 3]
|
||||||
l2 = [0, 4]
|
l2 = [0, 4]
|
||||||
|
|
@ -9,6 +11,8 @@ l5 = [0, 7]
|
||||||
l6 = [0, 8]
|
l6 = [0, 8]
|
||||||
l7 = [0, 9]
|
l7 = [0, 9]
|
||||||
l8 = [0, 10]
|
l8 = [0, 10]
|
||||||
|
|
||||||
|
# Right stripe
|
||||||
r0 = [0, 11]
|
r0 = [0, 11]
|
||||||
r1 = [0, 12]
|
r1 = [0, 12]
|
||||||
r2 = [0, 13]
|
r2 = [0, 13]
|
||||||
|
|
|
||||||
3
requirements.txt
Normal file
3
requirements.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
colour
|
||||||
|
openrazer
|
||||||
|
toml
|
||||||
14
setup.py
Normal file
14
setup.py
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="rzr",
|
||||||
|
version="0.0.1",
|
||||||
|
author="Denis Lehmann",
|
||||||
|
author_email="denis@opaque.tech",
|
||||||
|
scripts=["bin/rzr"],
|
||||||
|
url="https://git.opaque.tech/denis/rzr",
|
||||||
|
license="LICENSE",
|
||||||
|
description="Apply lightmaps to Razer devices",
|
||||||
|
long_description=open("README.org").read(),
|
||||||
|
install_requires=["colour", "openrazer", "toml"],
|
||||||
|
)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue