diff options
author | Joshua Harlow <harlowja@gmail.com> | 2014-01-17 23:46:19 -0800 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2014-01-17 23:46:19 -0800 |
commit | 61da02ee4318c5e2718fecf922b53e7bfee6d54c (patch) | |
tree | a8e532a5941bd9d9d323f67f17f35431255868a4 /requirements.txt | |
parent | cbc5af7396743e014f1ad9ece0bb56820d26f484 (diff) | |
download | vyos-cloud-init-61da02ee4318c5e2718fecf922b53e7bfee6d54c.tar.gz vyos-cloud-init-61da02ee4318c5e2718fecf922b53e7bfee6d54c.zip |
Update makefile to install from updated requirements files
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..8f695c68 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,33 @@ +# Pypi requirements for cloud-init to work + +# Used for untemplating any files or strings with parameters. +cheetah + +# This is used for any pretty printing of tabular data. +PrettyTable + +# This one is currently only used by the MAAS datasource. If that +# datasource is removed, this is no longer needed +oauth + +# This one is currently used only by the SmartOS datasource. If that +# datasource is removed, this is no longer needed +pyserial + +# This is only needed for places where we need to support configs in a manner +# that the built-in config parser is not sufficent (ie +# when we need to preserve comments, or do not have a top-level +# section)... +configobj + +# All new style configurations are in the yaml format +pyyaml + +# The new main entrypoint uses argparse instead of optparse +argparse + +# Requests handles ssl correctly! +requests + +# For patching pieces of cloud-config together +jsonpatch |