1
0
mirror of https://github.com/httpie/cli.git synced 2026-04-26 20:02:11 +02:00

use the __main__ submodule convention to make it possible to use python -m httpie

This commit is contained in:
Jakob Kramer
2012-03-02 18:35:33 +01:00
parent 860a851a4b
commit d670513c9f
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -15,5 +15,5 @@ setup(name='httpie',version=httpie.__version__,
author=httpie.__author__,
license=httpie.__licence__,
packages=['httpie'],
entry_points={'console_scripts': ['http = httpie.httpie:main']},
entry_points={'console_scripts': ['http = httpie.__main__:main']},
install_requires=requirements)