Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e6ea573b
Commit
e6ea573b
authored
Oct 16, 2000
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
distutils setup files for Tkinter
parent
5d90ba87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
Misc/RPM/Tkinter/setup.cfg
Misc/RPM/Tkinter/setup.cfg
+4
-0
Misc/RPM/Tkinter/setup.py
Misc/RPM/Tkinter/setup.py
+27
-0
No files found.
Misc/RPM/Tkinter/setup.cfg
0 → 100644
View file @
e6ea573b
[bdist_rpm]
packager = Jeremy Hylton <jeremy@beopen.com>
vendor = BeOpen PythonLabs
release = 2
Misc/RPM/Tkinter/setup.py
0 → 100644
View file @
e6ea573b
#! /usr/bin/env python
"""Tkinter is the Python interface to the Tk GUI toolkit. Tk offers
native look and feel on most major platforms, including Unix, Windows,
and Macintosh. The Tkinter-2.0 RPM contains the Python C extension
module for Python 2.0. The Python source files are distributed with
the main Python distribution."""
from
distutils.core
import
setup
,
Extension
setup
(
name
=
"Tkinter-2.0"
,
version
=
"8.0"
,
description
=
"Python interface to Tk GUI toolkit"
,
author
=
"Python development team"
,
author_email
=
"pythoneers@beopen.com"
,
url
=
"http://www.pythonlabs.com/products/python2.0/"
,
licence
=
"Modified CNRI Open Source License"
,
ext_modules
=
[
Extension
(
"_tkinter"
,
[
"src/_tkinter.c"
,
"src/tkappinit.c"
],
define_macros
=
[(
'WITH_APPINIT'
,
None
)],
library_dirs
=
[
"/usr/X11R6/lib"
],
libraries
=
[
"tk8.0"
,
"tcl8.0"
,
"X11"
],
)],
long_description
=
__doc__
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment