2008-08-18 23:08:39 +08:00
|
|
|
import os, sys
|
2011-07-09 04:58:22 +08:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
2009-10-29 19:45:12 +08:00
|
|
|
from distribute_setup import use_setuptools
|
|
|
|
use_setuptools()
|
2011-07-09 04:58:22 +08:00
|
|
|
from setuptools import setup
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2009-10-29 19:45:12 +08:00
|
|
|
long_description = """
|
2010-10-15 06:54:25 +08:00
|
|
|
cross-project testing tool for Python.
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2009-10-29 19:45:12 +08:00
|
|
|
Platforms: Linux, Win32, OSX
|
2010-09-14 22:18:06 +08:00
|
|
|
|
2011-11-26 05:34:05 +08:00
|
|
|
Interpreters: Python versions 2.4 through to 3.2, Jython 2.5.1 and PyPy-1.6/1.7
|
2010-09-14 22:18:06 +08:00
|
|
|
|
2010-10-15 06:54:25 +08:00
|
|
|
Bugs and issues: http://bitbucket.org/hpk42/pytest/issues/
|
2010-09-14 22:18:06 +08:00
|
|
|
|
2010-10-15 06:54:25 +08:00
|
|
|
Web page: http://pytest.org
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2012-02-01 21:52:34 +08:00
|
|
|
(c) Holger Krekel and others, 2004-2012
|
2008-08-21 18:18:58 +08:00
|
|
|
"""
|
2008-08-18 23:08:39 +08:00
|
|
|
def main():
|
2008-08-21 18:18:58 +08:00
|
|
|
setup(
|
2010-10-07 17:59:00 +08:00
|
|
|
name='pytest',
|
2010-10-15 06:54:25 +08:00
|
|
|
description='py.test: simple powerful testing with Python',
|
2009-10-03 07:47:39 +08:00
|
|
|
long_description = long_description,
|
2012-09-26 18:24:04 +08:00
|
|
|
version='2.3.0.dev17',
|
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'],
|
2011-06-01 14:00:12 +08:00
|
|
|
author='Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others',
|
2009-10-03 07:47:39 +08:00
|
|
|
author_email='holger at merlinux.eu',
|
2009-12-24 02:58:52 +08:00
|
|
|
entry_points= make_entry_points(),
|
2011-07-07 03:44:57 +08:00
|
|
|
# the following should be enabled for release
|
2012-05-17 14:47:50 +08:00
|
|
|
install_requires=['py>=1.4.8'],
|
2011-08-21 00:37:00 +08:00
|
|
|
classifiers=['Development Status :: 6 - Mature',
|
2008-08-18 23:08:39 +08:00
|
|
|
'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',
|
2010-05-05 20:24:02 +08:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3'],
|
2011-05-31 21:21:08 +08:00
|
|
|
packages=['_pytest', '_pytest.assertion'],
|
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
|
|
|
)
|
|
|
|
|
2009-12-24 02:58:52 +08:00
|
|
|
def cmdline_entrypoints(versioninfo, platform, basename):
|
2010-11-06 06:37:31 +08:00
|
|
|
target = 'pytest:main'
|
2010-01-03 21:19:31 +08:00
|
|
|
if platform.startswith('java'):
|
2010-10-07 17:59:00 +08:00
|
|
|
points = {'py.test-jython': target}
|
2010-01-03 21:19:31 +08:00
|
|
|
else:
|
|
|
|
if basename.startswith("pypy"):
|
2010-10-07 17:59:00 +08:00
|
|
|
points = {'py.test-%s' % basename: target}
|
2010-01-03 21:19:31 +08:00
|
|
|
else: # cpython
|
2010-10-07 17:59:00 +08:00
|
|
|
points = {'py.test-%s.%s' % versioninfo[:2] : target,}
|
|
|
|
points['py.test'] = target
|
2009-12-24 02:58:52 +08:00
|
|
|
return points
|
|
|
|
|
|
|
|
def make_entry_points():
|
|
|
|
basename = os.path.basename(sys.executable)
|
|
|
|
points = cmdline_entrypoints(sys.version_info, sys.platform, basename)
|
|
|
|
keys = list(points.keys())
|
|
|
|
keys.sort()
|
|
|
|
l = ["%s = %s" % (x, points[x]) for x in keys]
|
|
|
|
return {'console_scripts': l}
|
|
|
|
|
2008-08-18 23:08:39 +08:00
|
|
|
if __name__ == '__main__':
|
2012-05-17 21:44:18 +08:00
|
|
|
main()
|