From 57c428f57d998b31892febef7598848494de48d2 Mon Sep 17 00:00:00 2001 From: MystyPy Date: Sat, 13 Apr 2024 00:01:30 +1000 Subject: [PATCH] Fix setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ac97bec..7b8122f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ def get_version() -> str: version = "" - with open("starlete_plus/__init__.py") as f: + with open("starlette_plus/__init__.py") as f: match = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE) if not match or not match.group(1):