2008-08-18 23:08:39 +08:00
|
|
|
import os, sys
|
2009-10-29 19:45:12 +08:00
|
|
|
if sys.version_info >= (3,0):
|
|
|
|
from distribute_setup import use_setuptools
|
|
|
|
use_setuptools()
|
2009-06-24 22:20:14 +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
|
|
|
|
2010-05-06 01:50:59 +08:00
|
|
|
Interpreters: Python versions 2.4 through to 3.2, Jython 2.5.1 and PyPy
|
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
|
|
|
|
2010-01-03 18:42:26 +08:00
|
|
|
(c) Holger Krekel and others, 2004-2010
|
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,
|
2011-05-31 20:11:53 +08:00
|
|
|
version='2.1.0.dev2',
|
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'],
|
2008-08-18 23:08:39 +08:00
|
|
|
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & 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-05-28 23:02:51 +08:00
|
|
|
install_requires=['py>1.4.3'],
|
2010-11-26 04:02:09 +08:00
|
|
|
classifiers=['Development Status :: 5 - Production/Stable',
|
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'],
|
2010-11-13 18:10:45 +08:00
|
|
|
packages=['_pytest', ],
|
|
|
|
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__':
|
2011-03-13 03:12:19 +08:00
|
|
|
main()
|