forked from GitHub/gf-core
15 lines
462 B
Python
15 lines
462 B
Python
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 = 'A binding to the PGF engine',
|
|
author='Krasimir Angelov',
|
|
author_email='kr.angelov@gmail.com',
|
|
license='BSD',
|
|
ext_modules = [pgf_module])
|