forked from typeddjango/pytest-mypy-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.27 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
with open("README.md", "r") as f:
readme = f.read()
dependencies = [
"pytest>=6.0.0",
"mypy>=0.970",
"decorator",
"pyyaml",
"chevron",
"regex",
]
setup(
name="pytest-mypy-plugins",
version="1.10.1",
description="pytest plugin for writing tests for mypy plugins",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/TypedDjango/pytest-mypy-plugins",
author="Maksim Kurnikov",
author_email="[email protected]",
maintainer="Nikita Sobolev",
maintainer_email="[email protected]",
packages=["pytest_mypy_plugins"],
# the following makes a plugin available to pytest
entry_points={"pytest11": ["pytest-mypy-plugins = pytest_mypy_plugins.collect"]},
install_requires=dependencies,
python_requires=">=3.7",
package_data={
"pytest_mypy_plugins": ["py.typed"],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
],
)