summaryrefslogtreecommitdiff
path: root/graphics/py-gd/files/Setup.in
blob: a0abfb29bbe4a96149e774a971cd04988ce651bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# $NetBSD: Setup.in,v 1.5 2004/09/01 19:17:05 darcy 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 = ['@LOCALBASE@/include/'],
		library_dirs = ['@LOCALBASE@/lib'],
		libraries = ['gd'],
	)],

)