diff options
author | Jon Bernard <jbernard@tuxion.com> | 2015-12-31 11:05:43 -0500 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2015-12-31 11:25:04 -0500 |
commit | 312c56a431b60f6a5dd3f191869ac9bc71143e31 (patch) | |
tree | 9e5fcae7dc93746b3985f6e3fd4806836d203dc8 | |
parent | a1c63b3585436de59ffebaf25f9d9e56424cbce1 (diff) | |
download | dotfiles-312c56a431b60f6a5dd3f191869ac9bc71143e31.tar.gz dotfiles-312c56a431b60f6a5dd3f191869ac9bc71143e31.tar.bz2 dotfiles-312c56a431b60f6a5dd3f191869ac9bc71143e31.zip |
Add new requirements to setup.py
This includes click and py, which are both being used in the recent
updates.
-rw-r--r-- | setup.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,10 @@ setup( open('HISTORY.rst').read()), license='ISC', packages=['dotfiles'], + install_requires=[ + 'click', + 'py', + ], entry_points={ 'console_scripts': [ 'dotfiles=dotfiles.cli_orig:main', |