diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-08-08 23:09:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 23:09:23 -0400 |
commit | 7a707d56776f41669ebbeb99ae51d1b94d957e0a (patch) | |
tree | d87017fd438d62edd6d4241775e2e8895cd61018 /setup.py | |
parent | aad73bb6d561713c1855e9b3731e2e8f39cfd1f5 (diff) | |
parent | 4126394b6f9ba9c4c99a815c33eb2d7a027cc216 (diff) | |
download | rambo-7a707d56776f41669ebbeb99ae51d1b94d957e0a.tar.gz |
Short circuit rendering data against invalid payload
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -22,5 +22,10 @@ setup( ], packages=find_packages(), package_data={'': ['README.md', 'LICENSE.txt']}, - entry_points={'console_scripts': ['rambo=rambo.__main__:main'], } + entry_points={'console_scripts': ['rambo=rambo.__main__:main'],}, + install_requires=[ + 'jinja2', + 'pyyaml', + 'six' + ], ) |