diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-08-08 23:03:36 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-08-08 23:03:36 -0400 |
| commit | b85ebf45299f0e8a170c73c2b63ee1ab87f1eb2a (patch) | |
| tree | 8fff6a245d4038b60f193131a883ad9cf8bdb4a2 | |
| parent | 10181d5ef0369cc6d720e70147ad8a35d02fd372 (diff) | |
| download | rambo-b85ebf45299f0e8a170c73c2b63ee1ab87f1eb2a.tar.gz | |
install_requires everything but conda_build
| -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' + ], ) |
