We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e336858 commit 636f450Copy full SHA for 636f450
setup.py
@@ -98,7 +98,11 @@ def build_extension(self, ext):
98
author_email="joperez@hotmail.fr",
99
license="MIT",
100
packages=find_packages(include=["apischema*"]),
101
- package_data={"apischema": ["py.typed"]},
+ package_data={
102
+ "apischema": ["py.typed"],
103
+ "apischema.deserialization": ["methods.pyx"],
104
+ "apischema.serialization": ["methods.pyx"],
105
+ },
106
description="JSON (de)serialization, GraphQL and JSON schema generation using Python typing.",
107
long_description=README,
108
long_description_content_type="text/markdown",
0 commit comments