From a13b8185e4a43783284bf889b689d0de54f83dff Mon Sep 17 00:00:00 2001 From: David Lord Date: Sat, 6 Apr 2024 16:40:40 -0700 Subject: [PATCH] update pyproject.toml add typed classifier add pyright config simplify urls --- pyproject.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d1ee7a5b..d2739c2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Topic :: Internet :: WWW/HTTP :: WSGI", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "Topic :: Software Development :: Libraries :: Application Frameworks", + "Typing :: Typed", ] requires-python = ">=3.8" dependencies = [ @@ -32,8 +33,7 @@ dependencies = [ Donate = "https://palletsprojects.com/donate" Documentation = "https://flask.palletsprojects.com/" Changes = "https://flask.palletsprojects.com/changes/" -"Source Code" = "https://github.com/pallets/flask/" -"Issue Tracker" = "https://github.com/pallets/flask/issues/" +Source = "https://github.com/pallets/flask/" Chat = "https://discord.gg/pallets" [project.optional-dependencies] @@ -93,6 +93,11 @@ module = [ ] ignore_missing_imports = true +[tool.pyright] +pythonVersion = "3.8" +include = ["src/flask", "tests"] +typeCheckingMode = "basic" + [tool.ruff] src = ["src"] fix = true