From 05cb74d14aef10c86038c516791ca2692ca6e801 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Tue, 29 Jan 2013 09:20:32 +0000 Subject: the Python binding is in pure C again --- src/runtime/python/setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/runtime/python/setup.py') diff --git a/src/runtime/python/setup.py b/src/runtime/python/setup.py index 6f908cfe1..cac6f7409 100644 --- a/src/runtime/python/setup.py +++ b/src/runtime/python/setup.py @@ -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]) -- cgit v1.2.3