2008-08-18 23:08:39 +08:00
|
|
|
"""
|
2009-07-08 22:41:30 +08:00
|
|
|
py lib / py.test setup.py file, autogenerated by gensetup.py
|
2009-08-25 22:14:15 +08:00
|
|
|
|
2008-08-18 23:08:39 +08:00
|
|
|
"""
|
|
|
|
import os, sys
|
|
|
|
|
2009-06-24 22:20:14 +08:00
|
|
|
from setuptools import setup
|
|
|
|
|
2008-08-21 18:18:58 +08:00
|
|
|
long_description = """
|
|
|
|
|
2009-06-18 03:08:19 +08:00
|
|
|
advanced testing and development support library:
|
2008-08-21 18:18:58 +08:00
|
|
|
|
|
|
|
- `py.test`_: cross-project testing tool with many advanced features
|
|
|
|
- `py.execnet`_: ad-hoc code distribution to SSH, Socket and local sub processes
|
|
|
|
- `py.path`_: path abstractions over local and subversion files
|
|
|
|
- `py.code`_: dynamic code compile and traceback printing support
|
|
|
|
|
2009-06-18 03:08:19 +08:00
|
|
|
Compatibility: Linux, Win32, OSX, Python versions 2.3-2.6.
|
|
|
|
For questions please check out http://pylib.org/contact.html
|
2008-08-21 18:18:58 +08:00
|
|
|
|
|
|
|
.. _`py.test`: http://pylib.org/test.html
|
|
|
|
.. _`py.execnet`: http://pylib.org/execnet.html
|
|
|
|
.. _`py.path`: http://pylib.org/path.html
|
|
|
|
.. _`py.code`: http://pylib.org/code.html
|
|
|
|
|
2009-09-06 23:17:37 +08:00
|
|
|
(c) Holger Krekel and others, 2009
|
2008-08-21 18:18:58 +08:00
|
|
|
|
|
|
|
"""
|
2009-08-20 22:41:44 +08:00
|
|
|
trunk = 'trunk'
|
2008-08-18 23:08:39 +08:00
|
|
|
def main():
|
2008-08-21 18:18:58 +08:00
|
|
|
setup(
|
2008-08-18 23:08:39 +08:00
|
|
|
name='py',
|
2009-05-21 22:16:22 +08:00
|
|
|
description='py.test and pylib: advanced testing tool and networking lib',
|
2008-08-21 18:18:58 +08:00
|
|
|
long_description = long_description,
|
2009-08-20 22:41:44 +08:00
|
|
|
version= trunk or 'trunk',
|
2008-08-18 23:08:39 +08:00
|
|
|
url='http://pylib.org',
|
|
|
|
license='MIT license',
|
|
|
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
|
|
|
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & others',
|
|
|
|
author_email='holger at merlinux.eu, py-dev at codespeak.net',
|
|
|
|
|
2009-06-24 22:20:14 +08:00
|
|
|
entry_points={'console_scripts': ['py.cleanup = py.cmdline:pycleanup',
|
2009-08-25 22:14:15 +08:00
|
|
|
'py.convert_unittest = py.cmdline:pyconvert_unittest',
|
2009-06-24 22:20:14 +08:00
|
|
|
'py.countloc = py.cmdline:pycountloc',
|
|
|
|
'py.lookup = py.cmdline:pylookup',
|
|
|
|
'py.rest = py.cmdline:pyrest',
|
|
|
|
'py.svnwcrevert = py.cmdline:pysvnwcrevert',
|
|
|
|
'py.test = py.cmdline:pytest',
|
|
|
|
'py.which = py.cmdline:pywhich']},
|
2009-08-04 18:02:38 +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 :: System :: Distributed Computing',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
'Programming Language :: Python'],
|
2009-06-25 00:02:41 +08:00
|
|
|
packages=['py',
|
|
|
|
'py.builtin',
|
2009-06-24 22:57:55 +08:00
|
|
|
'py.cmdline',
|
|
|
|
'py.code',
|
|
|
|
'py.compat',
|
|
|
|
'py.execnet',
|
|
|
|
'py.execnet.script',
|
|
|
|
'py.io',
|
|
|
|
'py.log',
|
|
|
|
'py.path',
|
|
|
|
'py.path.gateway',
|
|
|
|
'py.process',
|
|
|
|
'py.rest',
|
|
|
|
'py.test',
|
|
|
|
'py.test.dist',
|
|
|
|
'py.test.looponfail',
|
|
|
|
'py.test.plugin',
|
|
|
|
'py.test.web',
|
2009-09-06 23:17:37 +08:00
|
|
|
'py.thread'],
|
|
|
|
package_data={'py': ['bin/_findpy.py',
|
2009-08-27 04:57:06 +08:00
|
|
|
'bin/env.cmd',
|
|
|
|
'bin/env.py',
|
2009-06-24 22:20:14 +08:00
|
|
|
'bin/py.cleanup',
|
2009-08-25 22:14:15 +08:00
|
|
|
'bin/py.convert_unittest',
|
2009-06-24 22:20:14 +08:00
|
|
|
'bin/py.countloc',
|
|
|
|
'bin/py.lookup',
|
|
|
|
'bin/py.rest',
|
|
|
|
'bin/py.svnwcrevert',
|
|
|
|
'bin/py.test',
|
|
|
|
'bin/py.which',
|
|
|
|
'bin/win32/py.cleanup.cmd',
|
2009-08-25 22:14:15 +08:00
|
|
|
'bin/win32/py.convert_unittest.cmd',
|
2009-06-24 22:20:14 +08:00
|
|
|
'bin/win32/py.countloc.cmd',
|
|
|
|
'bin/win32/py.lookup.cmd',
|
|
|
|
'bin/win32/py.rest.cmd',
|
|
|
|
'bin/win32/py.svnwcrevert.cmd',
|
|
|
|
'bin/win32/py.test.cmd',
|
|
|
|
'bin/win32/py.which.cmd',
|
2009-09-06 23:17:37 +08:00
|
|
|
'rest/rest.sty.template']},
|
2009-06-18 03:08:19 +08:00
|
|
|
zip_safe=False,
|
2008-08-18 23:08:39 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
2009-09-06 23:17:37 +08:00
|
|
|
|