blob: 730804c7f2265d3a4b1a1c9219ae028d0840c04d [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",
Andrew M. Kuchling59968252001-08-13 15:13:24 +000014 author_email="pythoneers@zope.com",
Jeremy Hylton21000ca2000-10-16 15:36:25 +000015 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