mirror of https://github.com/docker/docker-py.git
pypiwin32 added to requirements
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
a34e0cbfaa
commit
4a8832ca8b
6
setup.py
6
setup.py
|
@ -1,7 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
import os
|
||||
import sys
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
ROOT_DIR = os.path.dirname(__file__)
|
||||
SOURCE_DIR = os.path.join(ROOT_DIR)
|
||||
|
||||
|
@ -11,6 +14,9 @@ requirements = [
|
|||
'websocket-client >= 0.32.0',
|
||||
]
|
||||
|
||||
if sys.platform == 'win32':
|
||||
requirements.append('pypiwin32 >= 219')
|
||||
|
||||
extras_require = {
|
||||
':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5',
|
||||
':python_version < "3.3"': 'ipaddress >= 1.0.16',
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
-r requirements.txt
|
||||
pypiwin32==219
|
Loading…
Reference in New Issue