Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
21000cae
Kaydet (Commit)
21000cae
authored
Eki 16, 2000
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
distutils setup files for Tkinter
üst
355e2f2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
setup.cfg
Misc/RPM/Tkinter/setup.cfg
+4
-0
setup.py
Misc/RPM/Tkinter/setup.py
+27
-0
No files found.
Misc/RPM/Tkinter/setup.cfg
0 → 100644
Dosyayı görüntüle @
21000cae
[bdist_rpm]
packager = Jeremy Hylton <jeremy@beopen.com>
vendor = BeOpen PythonLabs
release = 2
Misc/RPM/Tkinter/setup.py
0 → 100644
Dosyayı görüntüle @
21000cae
#! /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