[ext] Adds docker extra to setup.py
This commit is contained in:
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
|||||||
# This file has been auto-generated.
|
# This file has been auto-generated.
|
||||||
# All changes will be lost, see Projectfile.
|
# All changes will be lost, see Projectfile.
|
||||||
#
|
#
|
||||||
# Updated at 2017-05-28 13:14:45.778931
|
# Updated at 2017-05-28 16:50:32.109035
|
||||||
|
|
||||||
PACKAGE ?= bonobo
|
PACKAGE ?= bonobo
|
||||||
PYTHON ?= $(shell which python)
|
PYTHON ?= $(shell which python)
|
||||||
|
|||||||
@ -46,6 +46,9 @@ python.add_requirements(
|
|||||||
dev=[
|
dev=[
|
||||||
'pytest-timeout >=1,<2',
|
'pytest-timeout >=1,<2',
|
||||||
],
|
],
|
||||||
|
docker=[
|
||||||
|
'bonobo-docker',
|
||||||
|
],
|
||||||
jupyter=[
|
jupyter=[
|
||||||
'jupyter >=1.0,<1.1',
|
'jupyter >=1.0,<1.1',
|
||||||
'ipywidgets >=6.0.0.beta5',
|
'ipywidgets >=6.0.0.beta5',
|
||||||
|
|||||||
22
requirements-docker.txt
Normal file
22
requirements-docker.txt
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
-e .[docker]
|
||||||
|
appdirs==1.4.3
|
||||||
|
bonobo-docker==0.2.3
|
||||||
|
bonobo==0.3.1
|
||||||
|
certifi==2017.4.17
|
||||||
|
chardet==3.0.3
|
||||||
|
colorama==0.3.9
|
||||||
|
docker-pycreds==0.2.1
|
||||||
|
docker==2.3.0
|
||||||
|
enum34==1.1.6
|
||||||
|
fs==2.0.3
|
||||||
|
idna==2.5
|
||||||
|
packaging==16.8
|
||||||
|
pbr==3.0.1
|
||||||
|
psutil==5.2.2
|
||||||
|
pyparsing==2.2.0
|
||||||
|
pytz==2017.2
|
||||||
|
requests==2.16.5
|
||||||
|
six==1.10.0
|
||||||
|
stevedore==1.21.0
|
||||||
|
urllib3==1.21.1
|
||||||
|
websocket-client==0.40.0
|
||||||
1
setup.py
1
setup.py
@ -61,6 +61,7 @@ setup(
|
|||||||
'coverage (>= 4.4, < 5.0)', 'pytest (>= 3.1, < 4.0)', 'pytest-cov (>= 2.5, < 3.0)',
|
'coverage (>= 4.4, < 5.0)', 'pytest (>= 3.1, < 4.0)', 'pytest-cov (>= 2.5, < 3.0)',
|
||||||
'pytest-timeout (>= 1, < 2)', 'sphinx (>= 1.6, < 2.0)'
|
'pytest-timeout (>= 1, < 2)', 'sphinx (>= 1.6, < 2.0)'
|
||||||
],
|
],
|
||||||
|
'docker': ['bonobo-docker'],
|
||||||
'jupyter': ['ipywidgets (>= 6.0.0.beta5)', 'jupyter (>= 1.0, < 1.1)']
|
'jupyter': ['ipywidgets (>= 6.0.0.beta5)', 'jupyter (>= 1.0, < 1.1)']
|
||||||
},
|
},
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|||||||
Reference in New Issue
Block a user