diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2017-02-15 15:58:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 15:58:09 +0100 |
commit | d7b7cbac1a1f418041f2accd08e3389c9dca8f21 (patch) | |
tree | b361b55eee1dec18bdbac989bb9af89adc416ff2 /requirements.txt | |
parent | Advanced example using shell with other executable (#21462) (diff) | |
download | ansible-d7b7cbac1a1f418041f2accd08e3389c9dca8f21.tar.xz ansible-d7b7cbac1a1f418041f2accd08e3389c9dca8f21.zip |
Move to using a requirements.txt to install the python packages. (#21430)
Move to using a requirements.txt to install the python packages.
This makes it easy to keep the documentation and actual package
dependencies in sync.
Fixes #18453
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000..af13958738 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +# Note: this requirements.txt file is used to specify what dependencies are +# needed to make the package run rather than for deployment of a tested set of +# packages. Thus, this should be the loosest set possible (only required +# packages, not optional ones, and with the widest range of versions that could +# be suitable) +jinja2 +PyYAML +paramiko +pycrypto >= 2.6 +setuptools |