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
f2ea67ba
Kaydet (Commit)
f2ea67ba
authored
Agu 08, 2014
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #288 from dnephin/unpin_deps
Don't use pinned dependencies
üst
14f9c07b
59c6d5c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
setup.py
setup.py
+10
-7
No files found.
setup.py
Dosyayı görüntüle @
f2ea67ba
...
...
@@ -6,17 +6,19 @@ from setuptools import setup
ROOT_DIR
=
os
.
path
.
dirname
(
__file__
)
SOURCE_DIR
=
os
.
path
.
join
(
ROOT_DIR
)
if
sys
.
version_info
[
0
]
==
3
:
requirements_file
=
'./requirements3.txt'
else
:
requirements_file
=
'./requirements.txt'
requirements
=
[
'requests >= 2.2.1'
,
'six >= 1.3.0'
,
]
if
sys
.
version_info
[
0
]
<
3
:
requirements
.
append
(
'websocket-client >= 0.11.0'
)
exec
(
open
(
'docker/version.py'
)
.
read
())
with
open
(
'./test-requirements.txt'
)
as
test_reqs_txt
:
test_requirements
=
[
line
for
line
in
test_reqs_txt
]
with
open
(
requirements_file
)
as
requirements_txt
:
requirements
=
[
line
for
line
in
requirements_txt
]
setup
(
name
=
"docker-py"
,
...
...
@@ -24,7 +26,8 @@ setup(
description
=
"Python client for Docker."
,
packages
=
[
'docker'
,
'docker.auth'
,
'docker.unixconn'
,
'docker.utils'
,
'docker.ssladapter'
],
install_requires
=
requirements
+
test_requirements
,
install_requires
=
requirements
,
tests_require
=
test_requirements
,
zip_safe
=
False
,
test_suite
=
'tests'
,
classifiers
=
[
...
...
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