pytest-mock/setup.py

41 lines
1.4 KiB
Python
Raw Normal View History

2016-11-01 20:01:57 +01:00
from setuptools import setup
2018-03-05 23:30:36 +01:00
from io import open
2016-11-01 20:01:57 +01:00
setup(
name='pytest-mock',
entry_points={
'pytest11': ['pytest_mock = pytest_mock'],
},
py_modules=['pytest_mock', '_pytest_mock_version'],
platforms='any',
2018-03-05 23:30:36 +01:00
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
2016-11-01 20:01:57 +01:00
install_requires=[
'pytest>=2.7',
2018-03-05 23:30:36 +01:00
'mock;python_version<"3.0"',
2016-11-01 20:01:57 +01:00
],
use_scm_version={'write_to': '_pytest_mock_version.py'},
setup_requires=['setuptools_scm'],
url='https://github.com/pytest-dev/pytest-mock/',
license='MIT',
author='Bruno Oliveira',
author_email='nicoddemus@gmail.com',
description='Thin-wrapper around the mock package for easier use with py.test',
2018-03-05 23:30:36 +01:00
long_description=open('README.rst', encoding='utf-8').read(),
2016-11-01 20:01:57 +01:00
keywords="pytest mock",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Pytest',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
2018-03-05 23:30:36 +01:00
'Programming Language :: Python :: 2',
2016-11-01 20:01:57 +01:00
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Testing',
]
)