21 lines
524 B
Python
21 lines
524 B
Python
#!/usr/bin/env python
|
|
# $NetBSD: Setup.in,v 1.6 2010/11/23 05:16:03 obache Exp $
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
setup(name = "gdmodule",
|
|
version = "1.3",
|
|
description = "Interface to gd graphics library",
|
|
author = "Richard Jones",
|
|
author_email = "richard@bofh.asn.au",
|
|
url = "http://starship.python.net/~richard/gdmodule/",
|
|
ext_modules = [Extension(
|
|
name = 'gd',
|
|
sources = ['gdmodule.c'],
|
|
include_dirs = ['@GD_PREFIX@/include/'],
|
|
library_dirs = ['@GD_PREFIX@/lib'],
|
|
libraries = ['gd'],
|
|
)],
|
|
|
|
)
|