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
|
#!/usr/bin/env python
from setuptools import setup
import versiontools_support
setup(
name="mocker",
version=":versiontools:mocker",
description="Graceful platform for test doubles in Python (mocks, stubs, fakes, and dummies).",
author="Gustavo Niemeyer",
author_email="gustavo@niemeyer.net",
maintainer="Zygmunt Krynicki",
maintainer_email="zygmunt.krynicki@linaro.org",
license="BSD",
url="https://github.com/zyga/mocker",
download_url="https://github.com/zyga/mocker/downloads",
py_modules=["mocker"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|