From 4d79a60d6591eb8db9ea66c3867eb42c5efa7796 Mon Sep 17 00:00:00 2001 From: Naoyuki Tai Date: Mon, 3 Feb 2025 14:22:55 -0500 Subject: [PATCH] Add development's files since the other repos may need the test data as well as running mysql Docker for testing. --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 816665e7..254a1b22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,15 +3,23 @@ name = "arxiv-base" version = "1.0.1" description = "Common code for arXiv Cloud" authors = ["arxiv.org"] + packages = [ { include = "arxiv" }, { include = "arxiv/py.typed" }, { include = "gcp/service_auth" } ] + include = [ "arxiv/base/static/*", "arxiv/base/templates/*", "arxiv/mail/templates/*", + "development/test-data/*", + "development/*", +] + +exclude = [ + "development/sqlacodegen/*", ] [tool.poetry.dependencies]