the Python binding is in pure C again

This commit is contained in:
kr.angelov
2013-01-29 09:20:32 +00:00
parent 66282bfcb7
commit d4717d533a
4 changed files with 4 additions and 177 deletions

View File

@@ -1,7 +1,7 @@
from distutils.core import setup, Extension
pgf_module = Extension('pgf.binding',
sources = ['pgf/binding.c'],
pgf_module = Extension('pgf',
sources = ['pypgf.c'],
extra_compile_args = ['-std=c99'],
libraries = ['gu', 'pgf'])
@@ -11,5 +11,4 @@ setup (name = 'pgf',
author='Krasimir Angelov',
author_email='kr.angelov@gmail.com',
license='BSD',
packages=['pgf'],
ext_modules = [pgf_module])