forked from flozz/rivalcfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (54 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# encoding: UTF-8
import os
import shutil
import subprocess
from setuptools import setup, find_packages
from setuptools.command.install import install as _install
class install(_install):
def run(self):
_install.run(self)
print("Installing udev rules...")
if not os.path.isdir("/etc/udev/rules.d"):
print("WARNING: udev rules have not been installed (/etc/udev/rules.d is not a directory)")
return
try:
shutil.copy("./rivalcfg/data/99-steelseries-rival.rules", "/etc/udev/rules.d/")
except IOError:
print("WARNING: udev rules have not been installed (permission denied)")
return
try:
subprocess.call(["udevadm", "trigger"])
except OSError:
print("WARNING: unable to update udev rules, please run the 'udevadm trigger' command")
return
print("Done!")
long_description = ""
try:
if os.path.isfile("README.rst"):
long_description = open("README.rst", "r").read()
elif os.path.isfile("README.md"):
long_description = open("README.md", "r").read()
except Exception as error:
print("Unable to read the README file: " + str(error))
setup(
name="rivalcfg",
version="3.0.0",
description="Configure SteelSeries Rival gaming mice",
url="https://github.com/flozz/rivalcfg",
license="WTFPL",
long_description=long_description,
author="Fabien LOISON",
keywords="steelseries rival rival100 mouse",
platforms=["Linux"],
packages=find_packages(),
install_requires=[
"hidapi>=0.7.99.post20"
],
entry_points={
"console_scripts": [
"rivalcfg = rivalcfg.__main__:main"
]
},
cmdclass={"install": install}
)