Fix for issue with translations

Using tool.setuptools.packages.find caused get-modulename.py to
resolve "find" as directory, breaking locale uploads to Zanata.

https://translate.openstack.org/iteration/view/neutron-vpnaas-dashboard/master/languages/ru?dswid=-194

Change-Id: Ida05f6644a486393e382fe2e17df33baf0ec65fc
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
This commit is contained in:
Ivan Anfimov
2026-06-15 15:22:09 +00:00
parent 81d59c768e
commit ebb88b8df0
+4 -3
View File
@@ -22,7 +22,6 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
@@ -32,5 +31,7 @@ classifiers = [
"Documentation" = "https://docs.openstack.org/neutron-vpnaas-dashboard/latest/"
"Source Code" = "https://opendev.org/openstack/neutron-vpnaas-dashboard"
[tool.setuptools.packages.find]
include = ["neutron_vpnaas_dashboard*"]
[tool.setuptools]
packages = [
"neutron_vpnaas_dashboard"
]