forked from flozz/rivalcfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (41 loc) · 1.05 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
#!/usr/bin/env python
# encoding: UTF-8
import os
from setuptools import setup, find_packages
long_description = ""
try:
if os.path.isfile("README.rst"):
long_description = open("README.rst", "r").read()
except Exception as error:
print("Unable to read the README file: " + str(error))
setup(
name="rivalcfg",
version="4.2.0",
description="Configure SteelSeries gaming mice",
url="https://github.com/flozz/rivalcfg",
license="WTFPL",
long_description=long_description,
author="Fabien LOISON",
keywords="steelseries rival sensei mouse",
platforms=["Linux", "Windows"],
packages=find_packages(),
install_requires=[
"hidapi>=0.7.99.post20",
"setuptools",
],
extras_require={
"dev": [
"flake8",
"pytest",
"Sphinx",
"sphinx-rtd-theme",
"nox",
],
},
entry_points={
"console_scripts": [
"rivalcfg = rivalcfg.__main__:main"
]
},
# cmdclass={"install": install}
)