2014-09-05 07:51:35 +02:00
|
|
|
# This is purely the result of trial and error.
|
|
|
|
|
2012-03-01 23:21:34 +01:00
|
|
|
import sys
|
2012-08-16 03:11:15 +02:00
|
|
|
import codecs
|
2014-06-28 13:08:58 +02:00
|
|
|
|
2014-04-28 13:25:45 +02:00
|
|
|
from setuptools import setup, find_packages
|
2014-04-24 17:08:40 +02:00
|
|
|
from setuptools.command.test import test as TestCommand
|
|
|
|
|
2012-02-28 13:49:58 +01:00
|
|
|
import httpie
|
2012-02-25 13:39:38 +01:00
|
|
|
|
|
|
|
|
2014-04-24 17:08:40 +02:00
|
|
|
class PyTest(TestCommand):
|
2014-04-28 13:25:45 +02:00
|
|
|
# `$ python setup.py test' simply installs minimal requirements
|
|
|
|
# and runs the tests with no fancy stuff like parallel execution.
|
2014-04-24 17:08:40 +02:00
|
|
|
def finalize_options(self):
|
|
|
|
TestCommand.finalize_options(self)
|
|
|
|
self.test_args = [
|
2014-04-26 11:03:53 +02:00
|
|
|
'--doctest-modules', '--verbose',
|
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 = [
|
2014-06-28 19:52:10 +02:00
|
|
|
# Pytest needs to come last.
|
2014-09-05 07:51:35 +02:00
|
|
|
# https://bitbucket.org/pypa/setuptools/issue/196/
|
2014-06-28 16:35:57 +02:00
|
|
|
'pytest-httpbin',
|
2014-06-28 19:52:10 +02:00
|
|
|
'pytest',
|
2015-03-25 22:52:49 +01:00
|
|
|
'mock',
|
2014-04-24 17:08:40 +02:00
|
|
|
]
|
2012-03-04 03:36:17 +01:00
|
|
|
|
2012-03-01 23:21:34 +01:00
|
|
|
|
2014-04-24 17:08:40 +02:00
|
|
|
install_requires = [
|
2014-05-17 22:24:44 +02:00
|
|
|
'requests>=2.3.0',
|
2012-06-24 03:43:08 +02:00
|
|
|
'Pygments>=1.5'
|
|
|
|
]
|
2013-08-01 09:07:33 +02:00
|
|
|
|
2015-10-22 19:32:16 +02:00
|
|
|
# Conditional dependencies:
|
2014-09-05 07:51:35 +02:00
|
|
|
|
|
|
|
# sdist
|
2015-10-22 19:32:16 +02:00
|
|
|
if 'bdist_wheel' not in sys.argv:
|
2014-09-05 07:51:35 +02:00
|
|
|
try:
|
2015-10-22 19:32:16 +02:00
|
|
|
# noinspection PyUnresolvedReferences
|
2014-09-05 07:51:35 +02:00
|
|
|
import argparse
|
|
|
|
except ImportError:
|
|
|
|
install_requires.append('argparse>=1.2.1')
|
|
|
|
|
|
|
|
if 'win32' in str(sys.platform).lower():
|
|
|
|
# Terminal colors for Windows
|
|
|
|
install_requires.append('colorama>=0.2.4')
|
|
|
|
|
|
|
|
|
|
|
|
# bdist_wheel
|
|
|
|
extras_require = {
|
|
|
|
# http://wheel.readthedocs.org/en/latest/#defining-conditional-dependencies
|
|
|
|
':python_version == "2.6"'
|
|
|
|
' or python_version == "3.0"'
|
|
|
|
' or python_version == "3.1" ': ['argparse>=1.2.1'],
|
|
|
|
':sys_platform == "win32"': ['colorama>=0.2.4'],
|
|
|
|
}
|
2012-03-01 23:21:34 +01:00
|
|
|
|
|
|
|
|
2012-08-07 14:50:17 +02:00
|
|
|
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-08-07 14:50:17 +02: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-08-07 14:50:17 +02:00
|
|
|
long_description=long_description(),
|
2012-03-04 02:26:41 +01:00
|
|
|
url='http://httpie.org/',
|
2015-07-03 18:55:45 +02:00
|
|
|
download_url='https://github.com/jkbrzt/httpie',
|
2012-02-26 16:22:04 +01:00
|
|
|
author=httpie.__author__,
|
2015-07-03 18:55:45 +02:00
|
|
|
author_email='jakub@roztocil.co',
|
2012-02-26 16:22:04 +01:00
|
|
|
license=httpie.__licence__,
|
2014-04-28 13:25:45 +02:00
|
|
|
packages=find_packages(),
|
2012-03-04 03:36:17 +01:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'http = httpie.__main__:main',
|
|
|
|
],
|
|
|
|
},
|
2014-09-05 07:51:35 +02:00
|
|
|
extras_require=extras_require,
|
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',
|
2014-05-13 02:36:09 +02:00
|
|
|
'Programming Language :: Python :: 2',
|
2012-03-04 03:36:17 +01:00
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2014-05-13 02:36:09 +02:00
|
|
|
'Programming Language :: Python :: 3',
|
2012-04-25 02:16:10 +02:00
|
|
|
'Programming Language :: Python :: 3.1',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
2014-04-28 13:25:45 +02:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
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
|
|
|
)
|