forked from garybernhardt/dingus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 809 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='dingus',
version='0.3.4',
description='A record-then-assert mocking library',
long_description=file('README.txt').read(),
author='Gary Bernhardt',
author_email='gary.bernhardt@gmail.com',
py_modules=['dingus'],
license='MIT',
url='https://github.com/garybernhardt/dingus',
keywords='testing test mocking mock double stub fake record assert',
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
],
)