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
f007b49e
Kaydet (Commit)
f007b49e
authored
Şub 06, 2017
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Includes ensurepip and venv packages in nuget package.
üst
d0b91586
5288477c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
make_zip.py
Tools/msi/make_zip.py
+11
-2
No files found.
Tools/msi/make_zip.py
Dosyayı görüntüle @
f007b49e
...
...
@@ -29,12 +29,15 @@ DEBUG_FILES = {
EXCLUDE_FROM_LIBRARY
=
{
'__pycache__'
,
'ensurepip'
,
'idlelib'
,
'pydoc_data'
,
'site-packages'
,
'tkinter'
,
'turtledemo'
,
}
EXCLUDE_FROM_EMBEDDABLE_LIBRARY
=
{
'ensurepip'
,
'venv'
,
}
...
...
@@ -82,6 +85,12 @@ def include_in_lib(p):
suffix
=
p
.
suffix
.
lower
()
return
suffix
not
in
{
'.pyc'
,
'.pyo'
,
'.exe'
}
def
include_in_embeddable_lib
(
p
):
if
p
.
is_dir
()
and
p
.
name
.
lower
()
in
EXCLUDE_FROM_EMBEDDABLE_LIBRARY
:
return
False
return
include_in_lib
(
p
)
def
include_in_libs
(
p
):
if
not
is_not_debug
(
p
):
return
False
...
...
@@ -114,7 +123,7 @@ EMBED_LAYOUT = [
(
'/'
,
'PCBuild/$arch'
,
'python*.exe'
,
is_not_debug
),
(
'/'
,
'PCBuild/$arch'
,
'*.pyd'
,
is_not_debug
),
(
'/'
,
'PCBuild/$arch'
,
'*.dll'
,
is_not_debug
),
(
'{}.zip'
.
format
(
BASE_NAME
),
'Lib'
,
'**/*'
,
include_in_lib
),
(
'{}.zip'
.
format
(
BASE_NAME
),
'Lib'
,
'**/*'
,
include_in_
embeddable_
lib
),
]
if
os
.
getenv
(
'DOC_FILENAME'
):
...
...
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