From 9ed484ed6668545dcb0b71c540550cc351e2dd6b Mon Sep 17 00:00:00 2001 From: 1mace1 Date: Sun, 3 Sep 2023 11:19:12 +0300 Subject: [PATCH] Make package comply with PEP-561 --- ddd_framework/py.typed | 0 pyproject.toml | 5 ++++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 ddd_framework/py.typed diff --git a/ddd_framework/py.typed b/ddd_framework/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml index a3ffe33..b8981b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "docsie-ddd-framework" -version = "0.0.1" +version = "0.0.2" description = "The package includes helper methods and types for working in DDD" readme = "README.md" requires-python = ">=3.8" @@ -25,6 +25,9 @@ Repository = "https://github.com/LikaloLLC/ddd-framework.git" [tool.setuptools.packages] find = {} +[tool.setuptools.package-data] +"ddd_framework" = ["py.typed"] + [tool.mypy] strict = true explicit_package_bases = true