mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 05:29:30 -06:00
now the Python binding has an alternative representation for abstract trees which is composed of Python objects. The new representation is not integrated with the core runtime yet
This commit is contained in:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user