2012-03-01 23:21:34 +01:00
|
|
|
import sys
|
2012-02-25 13:39:38 +01:00
|
|
|
from setuptools import setup
|
2012-02-28 13:49:58 +01:00
|
|
|
import httpie
|
2012-02-25 13:39:38 +01:00
|
|
|
|
|
|
|
|
2012-03-01 23:21:34 +01:00
|
|
|
requirements = ['requests>=0.10.4', 'Pygments>=1.4']
|
|
|
|
|
2012-03-04 02:26:41 +01:00
|
|
|
if sys.version_info < (2, 7):
|
2012-03-01 23:21:34 +01:00
|
|
|
requirements.append('argparse>=1.2.1')
|
|
|
|
|
|
|
|
|
2012-02-26 16:22:04 +01:00
|
|
|
setup(name='httpie',version=httpie.__version__,
|
|
|
|
description=httpie.__doc__.strip(),
|
2012-03-04 02:26:41 +01:00
|
|
|
url='http://httpie.org/',
|
2012-02-26 16:22:04 +01:00
|
|
|
author=httpie.__author__,
|
|
|
|
license=httpie.__licence__,
|
2012-02-25 13:39:38 +01:00
|
|
|
packages=['httpie'],
|
2012-03-02 18:35:33 +01:00
|
|
|
entry_points={'console_scripts': ['http = httpie.__main__:main']},
|
2012-03-01 23:21:34 +01:00
|
|
|
install_requires=requirements)
|