diff --git a/pyproject.toml b/pyproject.toml index ce2fdb8..04d9a3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.1.0" description = "Reticulum LXMF-based OpenAPI framework" readme = "README.md" requires-python = ">=3.8" -license = {text = "MIT"} +license = "MIT" dependencies = [ "RNS", "LXMF", @@ -25,5 +25,22 @@ dev = [ "flake8" ] +[tool.setuptools.packages.find] +include = [ + "reticulum_openapi", + "reticulum_openapi.*" +] +exclude = [ + "tests", + "tests.*", + "examples", + "examples.*", + "templates", + "templates.*", + "scripts", + "scripts.*", + "venv_*" +] + [tool.pytest.ini_options] pythonpath = ["."]