Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
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
docker-py
Commits
008730c6
Kaydet (Commit)
008730c6
authored
Eki 05, 2016
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Eki 05, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1248 from docker/setup-py-fixes
Add missing long_description and maintainer fields to setup.py
üst
9957af9d
f4cb91eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
setup.py
setup.py
+12
-0
No files found.
setup.py
Dosyayı görüntüle @
008730c6
...
@@ -33,10 +33,20 @@ with open('./test-requirements.txt') as test_reqs_txt:
...
@@ -33,10 +33,20 @@ with open('./test-requirements.txt') as test_reqs_txt:
test_requirements
=
[
line
for
line
in
test_reqs_txt
]
test_requirements
=
[
line
for
line
in
test_reqs_txt
]
long_description
=
''
try
:
with
open
(
'./README.rst'
)
as
readme_rst
:
long_description
=
readme_rst
.
read
()
except
IOError
:
# README.rst is only generated on release. Its absence should not prevent
# setup.py from working properly.
pass
setup
(
setup
(
name
=
"docker-py"
,
name
=
"docker-py"
,
version
=
version
,
version
=
version
,
description
=
"Python client for Docker."
,
description
=
"Python client for Docker."
,
long_description
=
long_description
,
url
=
'https://github.com/docker/docker-py/'
,
url
=
'https://github.com/docker/docker-py/'
,
packages
=
[
packages
=
[
'docker'
,
'docker.api'
,
'docker.auth'
,
'docker.transport'
,
'docker'
,
'docker.api'
,
'docker.auth'
,
'docker.transport'
,
...
@@ -64,4 +74,6 @@ setup(
...
@@ -64,4 +74,6 @@ setup(
'Topic :: Utilities'
,
'Topic :: Utilities'
,
'License :: OSI Approved :: Apache Software License'
,
'License :: OSI Approved :: Apache Software License'
,
],
],
maintainer
=
'Joffrey F'
,
maintainer_email
=
'joffrey@docker.com'
,
)
)
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