diff --git a/setup.py b/setup.py index 606849326a..cf3fda0c64 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,16 @@ from setuptools import setup -setup() +setup( + name='httpie', + version='0.9.3', + install_requires=[ + 'requests[security]>=2.10.0', + 'certifi', + ], + entry_points={ + 'console_scripts': [ + 'http = httpie.__main__:main', + ], + }, + # ... other metadata +)