Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Added requirements to setup.py for client.
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Jul 25, 2013
1 parent 8908fd5 commit 2a14dc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
KWARGS = {}
if USE_SETUPTOOLS:
KWARGS = {
'install_requires': ['PyYAML', 'requests'],
'install_requires': ['docopt', 'PyYAML', 'requests'],
'entry_points': {'console_scripts': ['deis = deis.client:main']},
}
else:
Expand Down Expand Up @@ -59,6 +59,6 @@
],
scripts=['deis/deis'],
long_description=LONG_DESCRIPTION,
requires=['PyYAML', 'requests'],
requires=['docopt', 'PyYAML', 'requests'],
zip_safe=True,
**KWARGS)

0 comments on commit 2a14dc7

Please sign in to comment.