forked from zhmcclient/zhmccli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
48 lines (40 loc) · 1.77 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Pip requirements file for zhmccli runtime dependencies.
#
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
# Make sure that the package versions in minimum-constraints.txt are also
# the minimum versions required in requirements.txt and dev-requirements.txt.
# Direct dependencies (except pip, setuptools, wheel):
# TODO: Use zhmcclient 1.1.0 once released
git+https://github.com/zhmcclient/python-zhmcclient.git@master#egg=zhmcclient
# zhmcclient>=1.1.0 # Apache
# click <7.0 did not properly declare supported Python versions
# click 8.0 will drop support for Python 2.7,3.5
# click 8.0 is incompatible with click-repl.
click>=7.0,<8.0; python_version == '2.7' # BSD
click>=7.0,<8.0; python_version == '3.5' # BSD
click>=7.0,<8.0; python_version >= '3.6' # BSD
click-repl>=0.1.0 # MIT
click-spinner>=0.1.6 # MIT
progressbar2>=3.12.0 # BSD
six>=1.14.0 # MIT
tabulate>=0.8.1 # MIT
pyreadline>=2.1; sys_platform == "win32" # BSD
# prompt-toolkit is pulled in by click-repl.
# prompt-toolkit>=2.0 conflicts with ipython and jupyter-console.
# prompt-toolkit>=3.0 does not support py27.
prompt-toolkit>=1.0.15,<2.0.0; python_version == '2.7'
prompt-toolkit>=2.0.1; python_version >= '3.5'
# Indirect dependencies (commented out, only listed to document their license):
# certifi # MPL 2.0, from requests
# chardet # LGPL, from requests
# decorator # BSD, from zhmcclient
# docopt # MIT, from stomp.py
# idna # BSD, from requests
# python-utils # BSD, from progressbar2
# pytz # MIT, from zhmcclient
# requests # Apache, from zhmcclient
# stomp.py # Apache, from zhmcclient
# urllib3 # MIT, from requests
# wcwidth # MIT, from prompt-toolkit