httpie-cli/setup.py

87 lines
2.2 KiB
Python
Raw Normal View History

import sys
2012-08-16 03:11:15 +02:00
import codecs
2012-02-25 13:39:38 +01:00
from setuptools import setup
2014-04-24 17:08:40 +02:00
from setuptools.command.test import test as TestCommand
import httpie
2012-02-25 13:39:38 +01:00
2014-04-24 17:08:40 +02:00
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_suite = True
self.test_args = [
'--doctest-modules',
2014-04-26 10:49:40 +02:00
'./httpie', './tests'
2014-04-24 17:08:40 +02:00
]
self.test_suite = True
def run_tests(self):
import pytest
sys.exit(pytest.main(self.test_args))
tests_require = [
'pytest',
]
2012-03-04 03:36:17 +01:00
2014-04-24 17:08:40 +02:00
install_requires = [
2013-09-24 21:48:44 +02:00
'requests>=2.0.0',
2012-06-24 03:43:08 +02:00
'Pygments>=1.5'
]
try:
#noinspection PyUnresolvedReferences
import argparse
except ImportError:
2014-04-24 17:08:40 +02:00
install_requires.append('argparse>=1.2.1')
if 'win32' in str(sys.platform).lower():
# Terminal colors for Windows
2014-04-24 17:08:40 +02:00
install_requires.append('colorama>=0.2.4')
def long_description():
2012-08-16 03:11:15 +02:00
with codecs.open('README.rst', encoding='utf8') as f:
2013-08-01 08:46:37 +02:00
return f.read()
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=long_description(),
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__,
packages=['httpie', 'httpie.plugins'],
2012-03-04 03:36:17 +01:00
entry_points={
'console_scripts': [
'http = httpie.__main__:main',
],
},
2014-04-24 17:08:40 +02:00
install_requires=install_requires,
tests_require=tests_require,
2014-04-26 10:49:40 +02:00
cmdclass={'test': PyTest},
2012-03-04 03:36:17 +01:00
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-07-26 00:26:23 +02:00
'Topic :: Utilities'
2012-03-04 13:46:41 +01:00
],
2012-03-04 03:36:17 +01:00
)