summaryrefslogtreecommitdiff
path: root/src/runtime/python/setup.py
blob: 7356cb6c1390cf95a298a0f8ee1506f75703a580 (plain)
1
2
3
4
5
6
7
8
9
10
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])