corrected case of Py_ParseTupleAndKeywords
[PyX52.git] / setup.py
blobe8660b73c802718c1373771700bfc420d0dee781
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.0',
10 ext_modules=[PyX52],