[pyproject] Include only rally package

While transitioning to pyproject.toml 'rally*' was
added to include list instead of 'rally' as it was in
setup.cfg.

Noticed during RPM build failure[1].

[1] https://review.rdoproject.org/r/c/openstack/rally-distgit/+/58041

Change-Id: I1a51a37aadc80d712ebb5b3e62db3c3a48797b77
Signed-off-by: Yatin Karel <ykarel@redhat.com>
This commit is contained in:
2025-10-03 13:41:29 +05:30
parent 06e62af58c
commit 38fd63490c
2 changed files with 10 additions and 2 deletions

View File

@@ -17,6 +17,14 @@ Changelog
.. Release notes for existing releases are MUTABLE! If there is something that .. Release notes for existing releases are MUTABLE! If there is something that
was missed or can be improved, feel free to change it! was missed or can be improved, feel free to change it!
unreleased
-----------
Changed
~~~~~~~
* Include only rally package (pyproject.toml)
[5.0.0] - 2025-09-03 [5.0.0] - 2025-09-03
-------------------- --------------------

View File

@@ -56,7 +56,7 @@ postgres = [
[tool.setuptools.packages.find] [tool.setuptools.packages.find]
where = ["."] where = ["."]
include = ["rally*"] include = ["rally"]
exclude = ["tests"] exclude = ["tests"]
[project.scripts] [project.scripts]
@@ -285,4 +285,4 @@ disable_error_code = ["no-untyped-def"]
[[tool.mypy.overrides]] [[tool.mypy.overrides]]
module = "rally.verification.utils" module = "rally.verification.utils"
disable_error_code = ["assignment", "method-assign", "no-untyped-def"] disable_error_code = ["assignment", "method-assign", "no-untyped-def"]