1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
"""pMock: Python mock object framework.
pMock provides support for creating mock objects for use in unit testing.
The api is modelled on the jmock mock object framework.
"""
classifiers = """\
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Python Software Foundation License
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Testing
Operating System :: OS Independent
"""
from distutils.core import setup
doclines = __doc__.split("\n")
setup (
name = "pmock",
version = "0.3",
maintainer="Graham Carlyle",
maintainer_email="grahamcarlyle@users.sourceforge.net",
license="Same terms as Python",
platforms = ["any"],
url = "http://pmock.sf.net",
description = doclines[0],
classifiers = filter(None, classifiers.split("\n")),
long_description = "\n".join(doclines[2:]),
package_dir = {"": "src"},
py_modules = ["pmock"]
)
|