From 6ac936b054698bcaab5f3df7ef2a35cd1f086fd2 Mon Sep 17 00:00:00 2001 From: Egor Abramov Date: Mon, 31 Mar 2025 13:08:50 +0300 Subject: [PATCH] feat: add py.typed marker file for PEP-561 support --- allure-python-commons/setup.py | 1 + allure-python-commons/src/py.typed | 0 2 files changed, 1 insertion(+) create mode 100644 allure-python-commons/src/py.typed diff --git a/allure-python-commons/setup.py b/allure-python-commons/setup.py index ee645587..b7a0833f 100644 --- a/allure-python-commons/setup.py +++ b/allure-python-commons/setup.py @@ -51,6 +51,7 @@ def main(): long_description_content_type="text/markdown", packages=["allure_commons"], package_dir={"allure_commons": 'src'}, + package_data={"allure_commons": ["py.typed"]}, install_requires=install_requires, py_modules=['allure', 'allure_commons'], python_requires='>=3.6' diff --git a/allure-python-commons/src/py.typed b/allure-python-commons/src/py.typed new file mode 100644 index 00000000..e69de29b