diff --git a/pyproject.toml b/pyproject.toml index cc8f7b67..275438bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ # SPDX-FileContributor: David Pape [tool.poetry] +# Reference at https://python-poetry.org/docs/pyproject/ name = "hermes" version = "0.1.0" description = "Workflow to publish research software with rich metadata" @@ -30,6 +31,13 @@ include = [ "hermes/schema/*.json", ] +# Stating our package explicitely here to enable +# a) including contrib packages in the future and +# b) rename the package for development snapshot releases to TestPyPI +packages = [ + { include = "hermes", from = "src" } +] + [tool.poetry.dependencies] python = "^3.10" click = "^8.1"