-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (38 loc) · 1.16 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
import setuptools
from i3razer import __version__
def read_me():
with open("README.md", "r") as f:
return f.read()
setuptools.setup(
name="i3razer",
version=__version__,
author="Leo Fahrbach",
author_email="",
description="Shortcut/Command visualization on razer keyboards via openrazer",
long_description=read_me(),
long_description_content_type="text/markdown",
url="https://github.com/leofah/i3razer",
packages=setuptools.find_packages(),
include_package_data=True,
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
install_requires=[
"xlib>=0.21",
"PyYAML>=5.3.1"
],
dependency_links=[ # not supported by pip, but the information is useful
# openrazer should be installed manually, so the daemon and driver is installed
"https://openrazer.github.io/#download"
],
python_requires=">=3",
entry_points={
"console_scripts": [
"i3razer=i3razer:main",
],
},
)