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:
parent
34da47bcd2
commit
b8db879064
1 changed files with 7 additions and 0 deletions
|
@ -83,5 +83,12 @@ slixfeed = "slixfeed.__main__:main"
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools]
|
||||||
platforms = ["any"]
|
platforms = ["any"]
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
[tool.setuptools.package-data]
|
||||||
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]
|
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["."]
|
||||||
|
include = ["slixfeed"]
|
||||||
|
exclude = []
|
||||||
|
namespaces = false
|
||||||
|
|
Loading…
Reference in a new issue