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

Commit

Permalink
Merge pull request #414 from opdemand/fix-413-requests-version
Browse files Browse the repository at this point in the history
Be specific about required package versions in client setup.py.
  • Loading branch information
mboersma committed Dec 21, 2013
2 parents 3401d3e + a2b446c commit ebd177f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
author_email='info@opdemand.com',
url='https://github.com/opdemand/deis',
keywords=[
'opdemand', 'deis', 'cloud', 'chef', 'docker', 'heroku', 'aws', 'ec2', 'rackspace'
'opdemand', 'deis', 'paas', 'cloud', 'chef', 'docker', 'heroku',
'aws', 'ec2', 'rackspace', 'digitalocean'
],
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -59,6 +60,6 @@
('.', ['README.rst']),
],
long_description=LONG_DESCRIPTION,
requires=['docopt', 'PyYAML', 'requests'],
requires=['docopt(>=0.6.1)', 'PyYAML(>=3.10)', 'requests(>=2.1.0)'],
zip_safe=True,
**KWARGS)

0 comments on commit ebd177f

Please sign in to comment.