update pyproject.toml
add typed classifier add pyright config simplify urls
This commit is contained in:
parent
2da298bd85
commit
a13b8185e4
1 changed files with 7 additions and 2 deletions
|
|
@ -17,6 +17,7 @@ classifiers = [
|
||||||
"Topic :: Internet :: WWW/HTTP :: WSGI",
|
"Topic :: Internet :: WWW/HTTP :: WSGI",
|
||||||
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
||||||
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
||||||
|
"Typing :: Typed",
|
||||||
]
|
]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|
@ -32,8 +33,7 @@ dependencies = [
|
||||||
Donate = "https://palletsprojects.com/donate"
|
Donate = "https://palletsprojects.com/donate"
|
||||||
Documentation = "https://flask.palletsprojects.com/"
|
Documentation = "https://flask.palletsprojects.com/"
|
||||||
Changes = "https://flask.palletsprojects.com/changes/"
|
Changes = "https://flask.palletsprojects.com/changes/"
|
||||||
"Source Code" = "https://github.com/pallets/flask/"
|
Source = "https://github.com/pallets/flask/"
|
||||||
"Issue Tracker" = "https://github.com/pallets/flask/issues/"
|
|
||||||
Chat = "https://discord.gg/pallets"
|
Chat = "https://discord.gg/pallets"
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
|
|
@ -93,6 +93,11 @@ module = [
|
||||||
]
|
]
|
||||||
ignore_missing_imports = true
|
ignore_missing_imports = true
|
||||||
|
|
||||||
|
[tool.pyright]
|
||||||
|
pythonVersion = "3.8"
|
||||||
|
include = ["src/flask", "tests"]
|
||||||
|
typeCheckingMode = "basic"
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
src = ["src"]
|
src = ["src"]
|
||||||
fix = true
|
fix = true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue