ports/graphics/py-gdchart/files/setup.py
2002-07-18 05:55:53 +00:00

14 lines
343 B
Python

from distutils.core import setup, Extension
setup(
name = 'gdchart',
version = "%%PORTVERSION%%",
py_modules = ["chart"],
ext_modules = [
Extension("gdchart", ["gdc_py.c"],
include_dirs=["%%GD_INCLUDE%%", "%%GDCHART_INCLUDE%%"],
libraries=["gdchart", "gd", "png", "z", "jpeg"],
library_dirs=["%%LOCALLIB%%"]
)
]
)