From 7794d2f88ecb50afc27f5117018c7d45319615e5 Mon Sep 17 00:00:00 2001 From: fliiiix Date: Sat, 21 Dec 2024 10:50:15 +0100 Subject: [PATCH] Normalize project name for pypi In the future, PyPI will require all newly uploaded source distribution filenames to comply with PEP 625. Fixes #482 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c04beafa..b6a8bfb2 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def get_meta(name): } setup( - name="radish-bdd", + name="radish_bdd", version=get_meta("version"), license=get_meta("license"), description=get_meta("description"),