1
0
forked from GitHub/gf-core

an initial Python binding to the C runtime

This commit is contained in:
kr.angelov
2012-12-12 11:29:39 +00:00
parent aa13090b66
commit 0891ef3f0f
2 changed files with 500 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from distutils.core import setup, Extension
pgf_module = Extension('pgf',
sources = ['pypgf.c'],
extra_compile_args = ['-std=c99'],
libraries = ['gu', 'pgf'])
setup (name = 'pgf',
version = '1.0',
description = 'This is binding to the PGF engine',
ext_modules = [pgf_module])