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
setoffs and settext now confirmed working, although setoffs still needs some work...
[PyX52.git]
/
setup.py
blob
8d58dfa23316d62330531b96fcd182d99225c16a
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.1'
,
10
ext_modules
=[
PyX52
],
11
)