-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (23 loc) · 993 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
from setuptools import setup, find_packages
import os
kws = {}
setup(name='pygxinput',
description="Use XInput devices in pyglet.",
long_description = \
"""pygxinput allows use of XInput devices in pyglet. Such devices
include 3Dconnexion Space Navigator and Wacom tablets.
For information about how to setup the Space Navigator as an XInput
device, see:
* http://www.fedorawiki.de/index.php/SpaceNavigator (in German)
* http://www.3dconnexion.com/forum/viewtopic.php?p=1431&sid=9cb59f09ea21510071372daf670e1f8b#1431
* http://www.3dconnexion.com/forum/viewtopic.php?p=7683#7683
For an alternative Space Navigator driver (currently not XInput compatible), see:
* http://spacenav.sourceforge.net/
""",
version='0.0.1', # keep in sync with pygxinput/pygxinput.py
author='Andrew Straw',
author_email='[email protected]',
url='http://code.astraw.com/projects/motmot/wiki/pygxinput',
license='BSD',
packages=find_packages(),
**kws)