diff --git a/MANIFEST.in b/MANIFEST.in index 8815dcca..95649344 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include README.md LICENSE prune tests +include arango/py.typed diff --git a/arango/py.typed b/arango/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/setup.py b/setup.py index 17dd8291..e64a11b8 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ url="https://github.com/ArangoDB-Community/python-arango", keywords=["arangodb", "python", "driver"], packages=find_packages(exclude=["tests"]), + package_data={"arango": ["py.typed"]}, include_package_data=True, python_requires=">=3.7", license="MIT",