blob: 78cb4a8426c7222c8dc0e20e4e49d7d30c5db4c1 [file] [log] [blame]
Jeremy Hylton21000ca2000-10-16 15:36:25 +00001#! /usr/bin/env python
2"""Tkinter is the Python interface to the Tk GUI toolkit. Tk offers
3native look and feel on most major platforms, including Unix, Windows,
4and Macintosh. The Tkinter-2.0 RPM contains the Python C extension
5module for Python 2.0. The Python source files are distributed with
6the main Python distribution."""
7
8from distutils.core import setup, Extension
9
10setup(name="Tkinter-2.0",
11 version="8.0",
12 description="Python interface to Tk GUI toolkit",
13 author="Python development team",
14 author_email="pythoneers@beopen.com",
15 url="http://www.pythonlabs.com/products/python2.0/",
16 licence="Modified CNRI Open Source License",
17
18 ext_modules=[Extension("_tkinter",
19 ["src/_tkinter.c", "src/tkappinit.c"],
20 define_macros=[('WITH_APPINIT', None)],
21 library_dirs=["/usr/X11R6/lib"],
22 libraries=["tk8.0", "tcl8.0", "X11"],
23 )],
24
25 long_description = __doc__
26 )
27