diff options
author | 2022-05-31 12:04:50 -0700 | |
---|---|---|
committer | 2022-05-31 12:06:24 -0700 | |
commit | 9a60609b48376fda13593e515a3d237f2f50ff0c (patch) | |
tree | 5b5a475e79c553fe94d7b4214154ea31fb47f8d4 | |
parent | Automatically determine the package version (diff) |
Fix package discovery for setuptools
Subpackages weren't being included.
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index c839da5..fa61c1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,8 +42,8 @@ tracker = "https://github.com/python-discord/snekbox/issues" [project.scripts] snekbox = "snekbox.__main__:main" -[tool.setuptools] -packages = ["snekbox"] +[tool.setuptools.packages.find] +include = ["snekbox*"] [tool.setuptools-git-versioning] enabled = true |