-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.27 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
from setuptools import setup, find_packages
VERSION = "0.0.0.dev0"
REQUIRES = [
"evdev>=1.0.0,<2.0.0",
"click>=6.7,<7",
"PyYAML>=3.13,<4",
]
EXTRAS_REQUIRES = {
"interactive": ["ipython>=6.5.0"]
}
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
# TODO "Environment :: X11 Applications"
# TODO "Environment :: X11 Applications :: Qt"
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux", # relies on uinput
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
]
setup(
name="frankengamepad",
version=VERSION,
python_requires='>=3.6',
url="https://github.com/danielkinsman/frankengamepad",
author="Daniel Kinsman",
author_email="[email protected]",
description="Combines several joysticks / gamepads into one",
license="GPLv3+",
packages=find_packages(),
entry_points={"console_scripts": [
"frankengamepad=frankengamepad.main:main",
]},
install_requires=REQUIRES,
extras_require=EXTRAS_REQUIRES,
)