Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 13, 2024
1 parent 7953378 commit 1c64d03
Showing 1 changed file with 24 additions and 25 deletions.
49 changes: 24 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@ requires = [
name = "whitenoise"
version = "6.6.0"
description = "Radically simplified static file serving for WSGI applications"
readme = {file = "README.rst", content-type = "text/x-rst"}
readme = { file = "README.rst", content-type = "text/x-rst" }
keywords = [
"Django",
]
license = {text = "MIT"}
license = { text = "MIT" }
maintainers = [
{name = "Adam Johnson", email="[email protected]"},
{name = "David Evans"},
{ name = "Adam Johnson", email = "[email protected]" },
{ name = "David Evans" },
]
authors = [
{ name = "David Evans" },
]
authors = [{name = "David Evans"}]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -40,18 +42,15 @@ classifiers = [
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Typing :: Typed",
]
[project.optional-dependencies]
brotli = [
"Brotli",
optional-dependencies.brotli = [
"brotli",
]
[project.urls]
Changelog = "https://whitenoise.readthedocs.io/en/stable/changelog.html"
Documentation = "https://whitenoise.readthedocs.io/"
Repository = "https://github.com/evansd/whitenoise"

urls.Changelog = "https://whitenoise.readthedocs.io/en/stable/changelog.html"
urls.Documentation = "https://whitenoise.readthedocs.io/"
urls.Repository = "https://github.com/evansd/whitenoise"
[tool.isort]
add_imports = [
"from __future__ import annotations"
"from __future__ import annotations",
]
force_single_line = true
profile = "black"
Expand All @@ -62,22 +61,22 @@ addopts = """\
--strict-markers
"""

[tool.coverage.run]
branch = true
parallel = true
source = [
"whitenoise",
"tests",
]
[tool.coverage.report]
show_missing = true

[tool.coverage.paths]
source = [
"src",
".tox/**/site-packages",
"src",
".tox/**/site-packages",
]

[tool.coverage.report]
show_missing = true
[tool.coverage.run]
branch = true
parallel = true
source = [
"whitenoise",
"tests",
]

[tool.rstcheck]
report_level = "ERROR"

0 comments on commit 1c64d03

Please sign in to comment.