Reintroduce $ https command alias with https:// as default scheme

Close #608
This commit is contained in:
Jakub Roztocil
2019-08-29 13:08:02 +02:00
parent 8512a630f9
commit 8e04a24b90
9 changed files with 50 additions and 26 deletions

View File

@ -82,6 +82,7 @@ setup(
entry_points={
'console_scripts': [
'http = httpie.__main__:main',
'https = httpie.__main__:main',
],
},
extras_require=extras_require,
@ -91,11 +92,6 @@ setup(
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',