forked from andrepl/rivalctl
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 672 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 672 Bytes
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
from setuptools import setup, find_packages
setup(
name = "rivalctl",
version = "0.1",
packages = find_packages(),
entry_points = {
'console_scripts': [
'rivalctl = rival.rivalctl:main'
]
},
# metadata for upload to PyPI
author = "Andre P. LeBlanc",
author_email = "andrepleblanc@gmail.com",
description = "A tool to configure the SteelSeries Rival Gaming Mouse",
license = "GPL2",
keywords = "steelseries rival",
url = "https://github.com/andrepl/rivalctl/",
install_requires=[
'ioctl-opt>=1.2',
'pyudev>=0.16',
'webcolors>=1.4',
'pyyaml>=3.10'
],
)