freebsd-ports/graphics/py-gdchart/files/setup.py
2002-09-15 12:11:38 +00:00

14 lines
339 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=["gdc", "gd", "png", "z", "jpeg"],
library_dirs=["%%LOCALLIB%%"]
)
]
)