mirror of
https://github.com/httpie/cli.git
synced 2025-02-07 13:08:11 +02:00
parent
5cd40916fe
commit
3442a5d037
9
setup.py
9
setup.py
@ -1,7 +1,14 @@
|
|||||||
|
import sys
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import httpie
|
import httpie
|
||||||
|
|
||||||
|
|
||||||
|
requirements = ['requests>=0.10.4', 'Pygments>=1.4']
|
||||||
|
|
||||||
|
if sys.version_info < (2 , 7):
|
||||||
|
requirements.append('argparse>=1.2.1')
|
||||||
|
|
||||||
|
|
||||||
setup(name='httpie',version=httpie.__version__,
|
setup(name='httpie',version=httpie.__version__,
|
||||||
description=httpie.__doc__.strip(),
|
description=httpie.__doc__.strip(),
|
||||||
url='https://github.com/jkbr/httpie',
|
url='https://github.com/jkbr/httpie',
|
||||||
@ -9,4 +16,4 @@ setup(name='httpie',version=httpie.__version__,
|
|||||||
license=httpie.__licence__,
|
license=httpie.__licence__,
|
||||||
packages=['httpie'],
|
packages=['httpie'],
|
||||||
entry_points={'console_scripts': ['http = httpie.httpie:main']},
|
entry_points={'console_scripts': ['http = httpie.httpie:main']},
|
||||||
install_requires=['requests>=0.10.4', 'Pygments>=1.4', 'argparse>=1.2.1'])
|
install_requires=requirements)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user