diff options
Diffstat (limited to 'src/runtime/python/setup.py')
| -rw-r--r-- | src/runtime/python/setup.py | 10 |
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]) |
