aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-04-10 21:31:32 +0100
committerGravatar Joe Banks <[email protected]>2024-04-10 21:31:32 +0100
commit4d77c1762028996c667912ca6cc857473c8bc58b (patch)
tree4917ea93eef7dbc800968b6b0f03921ed9f897a5
parentUpdate pyproject.toml and poetry.lock (diff)
Add packages section to pyproject.toml
This avoids a warning that the repo/package name (king-arthur) is not equivalent to the source folder location, which is just `arthur`. We don't really need this but it avoids potential warnings from Poetry.
-rw-r--r--pyproject.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index b7924dd..4fea822 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,6 +5,10 @@ description = "King Arthur is a helper for the Python Discord DevOps team."
authors = ["Joe Banks <[email protected]>", "Chris Lovering <[email protected]>"]
license = "MIT"
+packages = [
+ {include = "arthur"}
+]
+
[tool.poetry.dependencies]
python = "3.12.*"