projects
/
minwii.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Ajout de l'option --audio-driver.
[minwii.git]
/
src
/
pywiiuse
/
setup.py
1
#!/usr/bin/env python
2
3
from
distutils
.
core
import
setup
4
import
os
5
6
setup
(
name
=
'PyWiiUse'
,
7
version
=
'2.00'
,
8
description
=
'Python wrapper for the wiiuse interface to the Wiimote'
,
9
author
=
'Gary Bishop'
,
10
author_email
=
'gb@cs.unc.edu'
,
11
url
=
'http://www.cs.unc.edu/~gb/'
,
12
py_modules
=[
'PyWiiUse'
],
13
)
14