summaryrefslogtreecommitdiff
path: root/src/runtime/python/setup.py
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-01-07 15:11:12 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-01-07 15:11:12 +0000
commit9b78da535700f561952d0b6498d84b187e9a1791 (patch)
tree64951ee67c511350671702016ab1b69c3e7350b4 /src/runtime/python/setup.py
parent2c169406fcfa7a38cd89f8a6acbd0bb138d7c330 (diff)
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
Diffstat (limited to 'src/runtime/python/setup.py')
-rw-r--r--src/runtime/python/setup.py10
1 files changed, 7 insertions, 3 deletions
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])