Add "tool.setuptools.packages.find" as advised by Charalamm at /questions/72294299/multiple-top-level-packages-discovered-in-a-flat-layout

This commit is contained in:
Schimon Jehudah 2024-05-12 11:08:36 +00:00
parent 34da47bcd2
commit b8db879064

View file

@ -83,5 +83,12 @@ slixfeed = "slixfeed.__main__:main"
[tool.setuptools]
platforms = ["any"]
[tool.setuptools.package-data]
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]
[tool.setuptools.packages.find]
where = ["."]
include = ["slixfeed"]
exclude = []
namespaces = false