1
0
mirror of https://github.com/httpie/cli.git synced 2025-06-15 00:15:06 +02:00

Merge branch 'main-module-convention' of https://github.com/gandaro/httpie into gandaro-main-module-convention

Renamed httpie.httpie to httpie.__main__ so that one can invoke it via python -m httpie.
This commit is contained in:
Jakub Roztočil
2012-03-04 03:13:50 +01:00
3 changed files with 3 additions and 4 deletions

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)