httpie-cli/setup.py

54 lines
1.5 KiB
Python
Raw Normal View History

2012-03-04 03:36:17 +01:00
import os
import sys
2012-02-25 13:39:38 +01:00
from setuptools import setup
import httpie
2012-02-25 13:39:38 +01:00
2012-03-04 03:36:17 +01:00
if sys.argv[-1] == 'test':
os.system('python tests.py')
sys.exit()
2012-03-04 03:36:17 +01:00
requirements = ['requests>=0.10.4', 'Pygments>=1.4']
if sys.version_info < (2, 7):
requirements.append('argparse>=1.2.1')
2012-03-04 03:36:17 +01:00
setup(
2012-03-04 16:28:03 +01:00
name='httpie',
version=httpie.__version__,
description=httpie.__doc__.strip(),
long_description=open('README.md').read(),
url='http://httpie.org/',
2012-03-04 03:36:17 +01:00
download_url='https://github.com/jkbr/httpie',
author=httpie.__author__,
2012-03-04 03:36:17 +01:00
author_email='jakub@roztocil.name',
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',
# TODO: Python 3
# 'Programming Language :: Python :: 3.1'
# 'Programming Language :: Python :: 3.2'
# 'Programming Language :: Python :: 3.3'
'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
)