From f62032d3ab06e1c11ad6dc485eb51929bc0c790e Mon Sep 17 00:00:00 2001 From: Jeny Sadadia Date: Tue, 1 Oct 2024 12:48:48 +0530 Subject: [PATCH] pyproject.toml: include `migration` script to package Include migration script with `kernelci-api` python package for developer requirements. Signed-off-by: Jeny Sadadia --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 04557deb..8790c904 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,8 +51,9 @@ Documentation = "https://docs.kernelci.org" Repository = "https://github.com/kernelci/kernelci-api" [tool.setuptools] -packages = ["api", "scripts", "api.templates"] +packages = ["api", "scripts", "api.templates", "migrations"] [tool.setuptools.package-data] scripts = ["*"] "api.templates" = ["*.jinja2", "*.html", "*.png"] +migrations = ["*.py"]