mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 21:19:31 -06:00
25 lines
753 B
Python
25 lines
753 B
Python
from distutils.core import setup, Extension
|
|
import os
|
|
|
|
includes = os.getenv('EXTRA_INCLUDE_DIRS','').split(':')
|
|
if includes==['']:
|
|
includes=[]
|
|
libraries = os.getenv('EXTRA_LIB_DIRS','').split(':')
|
|
if libraries==['']:
|
|
libraries=[]
|
|
|
|
pgf_module = Extension('pgf',
|
|
sources = ['pypgf.c'],
|
|
extra_compile_args = ['-std=c99'],
|
|
include_dirs = includes,
|
|
library_dirs = libraries,
|
|
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])
|