blob: cac6f7409208e9191164c5e902466e12ea923591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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])
|