diff options
author | 2024-07-05 14:31:20 +0100 | |
---|---|---|
committer | 2024-07-05 14:31:20 +0100 | |
commit | 7d841609c81ae3aed11149e4ce3d4ce46b20d24a (patch) | |
tree | e0ae9c299d2bfc5bd01736c2fa8a90238655c2dd | |
parent | Bump ruff target version to 3.12 (diff) |
Disable packaging mode in pyproject.toml
This isn't a library, so doesn't need packaging
-rw-r--r-- | pyproject.toml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7f8e4ba..d1c9148 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,7 @@ version = "1.0.0" 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"} -] +package-mode = false [tool.poetry.dependencies] python = "3.12.*" |