Skip to content

Commit cc6a3b4

Browse files
authored
Make package PEP 561 compliant (#75)
* Add py.typed to comply with PEP 561 * Add Typing :: Typed to setup.classifiers
1 parent 6474217 commit cc6a3b4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pytest_mypy_plugins/py.typed

Whitespace-only changes.

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
entry_points={"pytest11": ["pytest-mypy-plugins = pytest_mypy_plugins.collect"]},
2929
install_requires=dependencies,
3030
python_requires=">=3.6",
31+
package_data={
32+
"pytest_mypy_plugins": ["py.typed"],
33+
},
3134
classifiers=[
3235
"Development Status :: 3 - Alpha",
3336
"License :: OSI Approved :: MIT License",
@@ -36,5 +39,6 @@
3639
"Programming Language :: Python :: 3.8",
3740
"Programming Language :: Python :: 3.9",
3841
"Programming Language :: Python :: 3.10",
42+
"Typing :: Typed",
3943
],
4044
)

0 commit comments

Comments
 (0)