rzr/setup.py
Denis Lehmann 4b372f12c8 cleanup
2025-02-01 15:44:29 +01:00

11 lines
286 B
Python

from setuptools import setup
setup(
name="rzr",
scripts=["./rzr"],
py_modules=[],
license="LICENSE",
description="A simple command line frontend for OpenRazer",
long_description=open("README.org").read(),
install_requires=["colour", "openrazer", "toml"],
)