2012-03-04 03:36:17 +01:00
|
|
|
import os
|
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-04 03:36:17 +01:00
|
|
|
if sys.argv[-1] == 'test':
|
2012-07-17 01:33:18 +02:00
|
|
|
status = os.system('python tests/tests.py')
|
|
|
|
sys.exit(1 if status > 127 else status)
|
2012-03-04 03:36:17 +01:00
|
|
|
|
2012-03-01 23:21:34 +01:00
|
|
|
|
2012-06-24 03:43:08 +02:00
|
|
|
requirements = [
|
|
|
|
# Debian has only requests==0.10.1 and httpie.deb depends on that.
|
|
|
|
'requests>=0.10.1',
|
|
|
|
'Pygments>=1.5'
|
|
|
|
]
|
2012-03-15 00:22:29 +01:00
|
|
|
if sys.version_info[:2] in ((2, 6), (3, 1)):
|
|
|
|
# argparse has been added in Python 3.2 / 2.7
|
2012-03-01 23:21:34 +01:00
|
|
|
requirements.append('argparse>=1.2.1')
|
2012-07-17 03:48:10 +02:00
|
|
|
if 'win32' in str(sys.platform).lower():
|
|
|
|
# Terminal colors for Windows
|
|
|
|
requirements.append('colorama>=0.2.4')
|
2012-03-01 23:21:34 +01:00
|
|
|
|
|
|
|
|
2012-03-04 03:36:17 +01:00
|
|
|
setup(
|
2012-03-04 16:28:03 +01:00
|
|
|
name='httpie',
|
|
|
|
version=httpie.__version__,
|
2012-02-26 16:22:04 +01:00
|
|
|
description=httpie.__doc__.strip(),
|
2012-03-05 07:26:23 +01:00
|
|
|
long_description=open('README.rst').read(),
|
2012-03-04 02:26:41 +01:00
|
|
|
url='http://httpie.org/',
|
2012-03-04 03:36:17 +01:00
|
|
|
download_url='https://github.com/jkbr/httpie',
|
2012-02-26 16:22:04 +01:00
|
|
|
author=httpie.__author__,
|
2012-03-04 03:36:17 +01:00
|
|
|
author_email='jakub@roztocil.name',
|
2012-02-26 16:22:04 +01:00
|
|
|
license=httpie.__licence__,
|
2012-02-25 13:39:38 +01:00
|
|
|
packages=['httpie'],
|
2012-03-04 03:36:17 +01:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'http = httpie.__main__:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
install_requires=requirements,
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2012-04-25 02:16:10 +02:00
|
|
|
'Programming Language :: Python :: 3.1',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
2012-03-04 03:36:17 +01:00
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Software Development',
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
'Topic :: Terminals',
|
|
|
|
'Topic :: Text Processing',
|
2012-03-04 13:46:41 +01:00
|
|
|
],
|
2012-03-04 03:36:17 +01:00
|
|
|
)
|