aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2018-08-08 23:03:36 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2018-08-08 23:03:36 -0400
commitb85ebf45299f0e8a170c73c2b63ee1ab87f1eb2a (patch)
tree8fff6a245d4038b60f193131a883ad9cf8bdb4a2 /setup.py
parent10181d5ef0369cc6d720e70147ad8a35d02fd372 (diff)
downloadrambo-b85ebf45299f0e8a170c73c2b63ee1ab87f1eb2a.tar.gz
install_requires everything but conda_build
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 5cdc2fe..dc6d937 100644
--- a/setup.py
+++ b/setup.py
@@ -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'
+ ],
)