freebsd-ports/graphics/py-gdchart/files/setup.py

15 lines
339 B
Python
Raw Normal View History

2002-07-18 07:55:53 +02:00
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"],
2002-07-18 07:55:53 +02:00
library_dirs=["%%LOCALLIB%%"]
)
]
)