-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
63 lines (50 loc) · 1.46 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
#!/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.14.0",
description="Configure SteelSeries gaming mice",
url="https://github.com/flozz/rivalcfg",
project_urls={
"Source Code": "https://github.com/flozz/rivalcfg",
"Documentation": "https://flozz.github.io/rivalcfg/",
"Changelog": "https://github.com/flozz/rivalcfg#changelog",
"Issues": "https://github.com/flozz/rivalcfg/issues",
"Chat": "https://discord.gg/P77sWhuSs4",
"Donate": "https://github.com/flozz/rivalcfg#supporting-this-project",
},
license="WTFPL",
long_description=long_description,
author="Fabien LOISON",
keywords="steelseries rival sensei mouse",
platforms=["Linux", "Windows"],
packages=find_packages(),
install_requires=[
"hidapi>=0.14.0",
"setuptools",
],
extras_require={
"dev": [
"flake8",
"pytest",
"Sphinx",
"sphinx-rtd-theme",
"nox",
"black",
],
},
entry_points={
"console_scripts": [
"rivalcfg = rivalcfg.__main__:main"
]
},
# cmdclass={"install": install}
)