2008-08-18 23:08:39 +08:00
|
|
|
import os, sys
|
2015-04-13 06:36:28 +08:00
|
|
|
import setuptools
|
|
|
|
import pkg_resources
|
2013-08-01 15:42:44 +08:00
|
|
|
from setuptools import setup, Command
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2014-05-14 01:02:02 +08:00
|
|
|
classifiers = ['Development Status :: 6 - Mature',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Topic :: Software Development :: Testing',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Utilities'] + [
|
|
|
|
('Programming Language :: Python :: %s' % x) for x in
|
2016-06-27 20:26:12 +08:00
|
|
|
'2 2.6 2.7 3 3.3 3.4 3.5'.split()]
|
2014-05-14 01:02:02 +08:00
|
|
|
|
2015-03-01 20:54:43 +08:00
|
|
|
with open('README.rst') as fd:
|
|
|
|
long_description = fd.read()
|
2014-05-14 01:02:02 +08:00
|
|
|
|
2015-04-02 16:38:25 +08:00
|
|
|
def get_version():
|
|
|
|
p = os.path.join(os.path.dirname(
|
|
|
|
os.path.abspath(__file__)), "_pytest", "__init__.py")
|
|
|
|
with open(p) as f:
|
|
|
|
for line in f.readlines():
|
|
|
|
if "__version__" in line:
|
|
|
|
return line.strip().split("=")[-1].strip(" '")
|
|
|
|
raise ValueError("could not read version")
|
|
|
|
|
2013-10-10 04:55:20 +08:00
|
|
|
|
2015-04-11 03:11:17 +08:00
|
|
|
def has_environment_marker_support():
|
|
|
|
"""
|
|
|
|
Tests that setuptools has support for PEP-426 environment marker support.
|
2015-04-18 04:25:35 +08:00
|
|
|
|
|
|
|
The first known release to support it is 0.7 (and the earliest on PyPI seems to be 0.7.2
|
2015-04-11 03:11:17 +08:00
|
|
|
so we're using that), see: http://pythonhosted.org/setuptools/history.html#id142
|
2015-04-18 04:25:35 +08:00
|
|
|
|
2015-04-11 03:11:17 +08:00
|
|
|
References:
|
2015-04-18 04:25:35 +08:00
|
|
|
|
2016-05-19 00:12:39 +08:00
|
|
|
* https://wheel.readthedocs.io/en/latest/index.html#defining-conditional-dependencies
|
2015-04-11 03:11:17 +08:00
|
|
|
* https://www.python.org/dev/peps/pep-0426/#environment-markers
|
|
|
|
"""
|
2015-04-11 02:08:50 +08:00
|
|
|
try:
|
2015-04-11 02:58:59 +08:00
|
|
|
return pkg_resources.parse_version(setuptools.__version__) >= pkg_resources.parse_version('0.7.2')
|
2015-04-11 02:44:27 +08:00
|
|
|
except Exception as exc:
|
|
|
|
sys.stderr.write("Could not test setuptool's version: %s\n" % exc)
|
2015-04-11 02:08:50 +08:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
2008-08-18 23:08:39 +08:00
|
|
|
def main():
|
2015-08-26 06:43:09 +08:00
|
|
|
install_requires = ['py>=1.4.29'] # pluggy is vendored in _pytest.vendored_packages
|
2015-04-11 02:08:50 +08:00
|
|
|
extras_require = {}
|
2015-04-11 03:11:17 +08:00
|
|
|
if has_environment_marker_support():
|
2016-06-27 20:26:12 +08:00
|
|
|
extras_require[':python_version=="2.6"'] = ['argparse']
|
2015-04-11 02:08:50 +08:00
|
|
|
extras_require[':sys_platform=="win32"'] = ['colorama']
|
|
|
|
else:
|
2016-06-27 20:26:12 +08:00
|
|
|
if sys.version_info < (2, 7):
|
2015-04-11 02:08:50 +08:00
|
|
|
install_requires.append('argparse')
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
install_requires.append('colorama')
|
2013-07-26 14:59:31 +08:00
|
|
|
|
2008-08-21 18:18:58 +08:00
|
|
|
setup(
|
2010-10-07 17:59:00 +08:00
|
|
|
name='pytest',
|
2014-01-18 19:31:33 +08:00
|
|
|
description='pytest: simple powerful testing with Python',
|
2014-05-14 01:02:02 +08:00
|
|
|
long_description=long_description,
|
2015-09-17 18:58:04 +08:00
|
|
|
version=get_version(),
|
2010-10-15 06:54:25 +08:00
|
|
|
url='http://pytest.org',
|
2008-08-18 23:08:39 +08:00
|
|
|
license='MIT license',
|
2009-10-03 07:47:39 +08:00
|
|
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
2015-09-17 19:43:39 +08:00
|
|
|
author='Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others',
|
2009-10-03 07:47:39 +08:00
|
|
|
author_email='holger at merlinux.eu',
|
2016-06-25 18:27:05 +08:00
|
|
|
entry_points={'console_scripts':
|
|
|
|
['pytest=pytest:main', 'py.test=pytest:main']},
|
2013-10-10 04:55:20 +08:00
|
|
|
classifiers=classifiers,
|
2014-05-14 01:02:02 +08:00
|
|
|
cmdclass={'test': PyTest},
|
2011-07-07 03:44:57 +08:00
|
|
|
# the following should be enabled for release
|
2013-07-26 14:59:31 +08:00
|
|
|
install_requires=install_requires,
|
2015-04-11 02:08:50 +08:00
|
|
|
extras_require=extras_require,
|
2015-11-27 22:43:01 +08:00
|
|
|
packages=['_pytest', '_pytest.assertion', '_pytest._code', '_pytest.vendored_packages'],
|
2010-11-13 18:10:45 +08:00
|
|
|
py_modules=['pytest'],
|
2009-10-29 19:45:12 +08:00
|
|
|
zip_safe=False,
|
2008-08-18 23:08:39 +08:00
|
|
|
)
|
|
|
|
|
2014-05-14 01:02:02 +08:00
|
|
|
|
2012-10-20 23:32:03 +08:00
|
|
|
class PyTest(Command):
|
|
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
def run(self):
|
2014-05-14 01:02:02 +08:00
|
|
|
import subprocess
|
|
|
|
PPATH = [x for x in os.environ.get('PYTHONPATH', '').split(':') if x]
|
2012-10-20 23:39:15 +08:00
|
|
|
PPATH.insert(0, os.getcwd())
|
2014-05-14 01:02:02 +08:00
|
|
|
os.environ['PYTHONPATH'] = ':'.join(PPATH)
|
2014-04-02 18:48:35 +08:00
|
|
|
errno = subprocess.call([sys.executable, 'pytest.py', '--ignore=doc'])
|
2012-10-20 23:32:03 +08:00
|
|
|
raise SystemExit(errno)
|
|
|
|
|
2014-05-14 01:02:02 +08:00
|
|
|
|
2008-08-18 23:08:39 +08:00
|
|
|
if __name__ == '__main__':
|
2012-10-01 16:31:04 +08:00
|
|
|
main()
|