mirror of
https://github.com/httpie/cli.git
synced 2024-11-21 23:33:12 +01:00
3442a5d037
Closes #7.
20 lines
507 B
Python
20 lines
507 B
Python
import sys
|
|
from setuptools import setup
|
|
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__,
|
|
description=httpie.__doc__.strip(),
|
|
url='https://github.com/jkbr/httpie',
|
|
author=httpie.__author__,
|
|
license=httpie.__licence__,
|
|
packages=['httpie'],
|
|
entry_points={'console_scripts': ['http = httpie.httpie:main']},
|
|
install_requires=requirements)
|