setoffs and settext now confirmed working, although setoffs still needs some work...
[PyX52.git] / setup.py
blob8d58dfa23316d62330531b96fcd182d99225c16a
1 #!/usr/bin/env python
2 from distutils.core import setup, Extension
3 PyX52 = Extension(
4 'PyX52',
5 sources=['PyX52.c'],
6 libraries=['x52pro'],
8 setup(name='PyX52',
9 version='0.1',
10 ext_modules=[PyX52],