repo.or.cz
/
PyX52.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
minor cleanups
[PyX52.git]
/
setup.py
blob
e8660b73c802718c1373771700bfc420d0dee781
1
#!/usr/bin/env python
2
from
distutils
.
core
import
setup
,
Extension
3
PyX52
=
Extension
(
4
'PyX52'
,
5
sources
=[
'PyX52.c'
],
6
libraries
=[
'x52pro'
],
7
)
8
setup
(
name
=
'PyX52'
,
9
version
=
'0.0'
,
10
ext_modules
=[
PyX52
],
11
)