mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 21:39:32 -06:00
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])
|