summaryrefslogtreecommitdiff
path: root/src/runtime/python/setup.py
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-01-29 09:20:32 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-01-29 09:20:32 +0000
commit05cb74d14aef10c86038c516791ca2692ca6e801 (patch)
treef590f0ea1a96e2077ac16a67318a8d9ab97de9a9 /src/runtime/python/setup.py
parentb524c5d8b50b38c8157d95534cbffa04643220ce (diff)
the Python binding is in pure C again
Diffstat (limited to 'src/runtime/python/setup.py')
-rw-r--r--src/runtime/python/setup.py5
1 files changed, 2 insertions, 3 deletions
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])