Fix package discovery: explicitly include conf subpackage

The conf subpackage was not being included when installing from
GitHub because 'packages = {find = {}}' wasn't finding it properly.
This caused 'ModuleNotFoundError: No module named aprsd_stock_plugin.conf'
when running aprsd sample-config.
This commit is contained in:
Walter Boring 2026-02-27 11:39:47 -05:00
parent 518f44ff16
commit af5f485dde

View File

@ -47,7 +47,7 @@ dev = [
"aprsd-stock-plugin-export-config" = "aprsd_stock_plugin.cli:main"
[tool.setuptools]
packages = {find = {}}
packages = ["aprsd_stock_plugin", "aprsd_stock_plugin.conf"]
[tool.setuptools.package-data]
"*" = ["LICENSE"]