From b52faa4796ff551c507572613d59f869700d41bb Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Wed, 29 Oct 2025 18:41:04 +0100 Subject: [PATCH] [Pypi] make project name PEP 625 compliant --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8f2b333..9f1cc90 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def run(self): REQUIRES_PYTHON = '>=3.8' setup( - name=PROJECT_NAME, + name=PROJECT_NAME.lower().replace("-", "_"), version=VERSION, url='https://github.com/Drakkar-Software/OctoBot-Script', license='GPL-3.0',