-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1017 Bytes
/
setup.py
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
from setuptools import setup
setup(
name="pytest-mockito",
version='0.0.4',
description='Base fixtures for mockito',
long_description=open('README.rst').read(),
license='MIT',
author='herr kaste',
author_email='[email protected]',
url='https://github.com/kaste/pytest-mockito',
platforms=['linux', 'osx', 'win32'],
packages=['pytest_mockito'],
entry_points={'pytest11': ['mockito = pytest_mockito.plugin'], },
zip_safe=False,
install_requires=['pytest>=3', 'mockito>=1.0.6'],
classifiers=[
'Development Status :: 4 - Beta',
'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 :: Quality Assurance',
'Topic :: Utilities',
'Programming Language :: Python',
],
)