blob: 6f908cfe19852fb6c0abcea1de7067ac38b1ea8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from distutils.core import setup, Extension
pgf_module = Extension('pgf.binding',
sources = ['pgf/binding.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',
packages=['pgf'],
ext_modules = [pgf_module])
|