Skip to content

Commit a2b446c

Browse files
committed
Be specific about required package versions in client setup.py.
1 parent 17da691 commit a2b446c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

client/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
author_email='info@opdemand.com',
4040
url='https://github.com/opdemand/deis',
4141
keywords=[
42-
'opdemand', 'deis', 'cloud', 'chef', 'docker', 'heroku', 'aws', 'ec2', 'rackspace'
42+
'opdemand', 'deis', 'paas', 'cloud', 'chef', 'docker', 'heroku',
43+
'aws', 'ec2', 'rackspace', 'digitalocean'
4344
],
4445
classifiers=[
4546
'Development Status :: 4 - Beta',
@@ -59,6 +60,6 @@
5960
('.', ['README.rst']),
6061
],
6162
long_description=LONG_DESCRIPTION,
62-
requires=['docopt', 'PyYAML', 'requests'],
63+
requires=['docopt(>=0.6.1)', 'PyYAML(>=3.10)', 'requests(>=2.1.0)'],
6364
zip_safe=True,
6465
**KWARGS)

0 commit comments

Comments
 (0)