pytest-mock/setup.py

42 lines
1.5 KiB
Python
Raw Normal View History

2018-03-05 23:30:36 +01:00
from io import open
2016-11-01 20:01:57 +01:00
2021-08-31 11:33:03 +02:00
from setuptools import find_packages
2019-08-24 18:33:04 +02:00
from setuptools import setup
2016-11-01 20:01:57 +01:00
setup(
2019-08-24 18:33:04 +02:00
name="pytest-mock",
entry_points={"pytest11": ["pytest_mock = pytest_mock"]},
2021-08-31 11:33:03 +02:00
packages=find_packages(where="src"),
package_dir={"": "src"},
2019-08-24 18:33:04 +02:00
platforms="any",
2021-08-31 11:33:03 +02:00
package_data={
"pytest_mock": ["py.typed"],
},
2022-05-26 23:59:37 +02:00
python_requires=">=3.7",
2021-08-31 11:33:03 +02:00
install_requires=["pytest>=5.0"],
use_scm_version={"write_to": "src/pytest_mock/_version.py"},
2019-08-24 18:33:04 +02:00
setup_requires=["setuptools_scm"],
url="https://github.com/pytest-dev/pytest-mock/",
license="MIT",
author="Bruno Oliveira",
author_email="nicoddemus@gmail.com",
2021-08-31 11:33:03 +02:00
description="Thin-wrapper around the mock package for easier use with pytest",
2019-08-24 18:33:04 +02:00
long_description=open("README.rst", encoding="utf-8").read(),
2016-11-01 20:01:57 +01:00
keywords="pytest mock",
2021-08-31 11:33:03 +02:00
extras_require={"dev": ["pre-commit", "tox", "pytest-asyncio"]},
2016-11-01 20:01:57 +01:00
classifiers=[
2019-08-24 18:33:04 +02:00
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2021-08-31 11:33:03 +02:00
"Programming Language :: Python :: 3.9",
2022-05-26 23:59:37 +02:00
"Programming Language :: Python :: 3.10",
2021-08-31 11:33:03 +02:00
"Programming Language :: Python :: 3 :: Only",
2019-08-24 18:33:04 +02:00
"Topic :: Software Development :: Testing",
],
2016-11-01 20:01:57 +01:00
)