From 9b78da535700f561952d0b6498d84b187e9a1791 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Mon, 7 Jan 2013 15:11:12 +0000 Subject: now the Python binding has an alternative representation for abstract trees which is composed of Python objects. The new representation is not integrated with the core runtime yet --- src/runtime/python/setup.py | 10 +++++++--- 1 file changed, 7 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 7356cb6c1..6f908cfe1 100644 --- a/src/runtime/python/setup.py +++ b/src/runtime/python/setup.py @@ -1,11 +1,15 @@ from distutils.core import setup, Extension -pgf_module = Extension('pgf', - sources = ['pypgf.c'], +pgf_module = Extension('pgf.binding', + sources = ['pgf/binding.c'], extra_compile_args = ['-std=c99'], libraries = ['gu', 'pgf']) setup (name = 'pgf', version = '1.0', - description = 'This is binding to the PGF engine', + description = 'A binding to the PGF engine', + author='Krasimir Angelov', + author_email='kr.angelov@gmail.com', + license='BSD', + packages=['pgf'], ext_modules = [pgf_module]) -- cgit v1.2.3