forked from retoor/snek
fix: add setuptools package find config and package-data in pyproject.toml
The diff adds two new sections to pyproject.toml: [tool.setuptools.packages.find] with where = ["src"] and [tool.setuptools.package-data] with "*" = ["*.*"] to ensure proper package discovery and data file inclusion during build.
This commit is contained in:
@@ -34,7 +34,11 @@ dependencies = [
|
||||
"multiavatar"
|
||||
]
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"] # <-- this changed
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
"*" = ["*.*"]
|
||||
|
||||
[project.scripts]
|
||||
snek = "snek.__main__:main"
|
||||
|
||||
Reference in New Issue
Block a user