forked from chrippa/ds4drv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 944 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
readme = open("README.rst").read()
history = open("HISTORY.rst").read()
setup(name="ds4drv",
version="0.2.1",
description="A DualShock 4 bluetooth driver for Linux",
url="https://github.com/chrippa/ds4drv",
author="Christopher Rosell",
author_email="chrippa@tanuki.se",
license="MIT",
long_description=readme + "\n\n" + history,
entry_points={
"console_scripts": ["ds4drv=ds4drv.__main__:main"]
},
packages=["ds4drv", "ds4drv.backends"],
install_requires=["evdev", "pyudev"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Games/Entertainment"
]
)