-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] pre-commit autoupdate (#495)
<!--pre-commit.ci start--> updates: - [github.com/tox-dev/pyproject-fmt: 1.8.0 → 2.0.4](tox-dev/pyproject-fmt@1.8.0...2.0.4) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Adam Johnson <[email protected]>
- Loading branch information
1 parent
6c2ada0
commit d7bdba8
Showing
2 changed files
with
18 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,17 @@ requires = [ | |
name = "apig-wsgi" | ||
version = "2.18.0" | ||
description = "Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway or an ALB." | ||
readme = {file = "README.rst", content-type = "text/x-rst"} | ||
readme = { file = "README.rst", content-type = "text/x-rst" } | ||
keywords = [ | ||
"API Gateway", | ||
"APIG", | ||
"AWS", | ||
"Lambda", | ||
] | ||
license = {text = "MIT"} | ||
authors = [{name = "Adam Johnson", email = "[email protected]"}] | ||
license = { text = "MIT" } | ||
authors = [ | ||
{ name = "Adam Johnson", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -33,23 +35,22 @@ classifiers = [ | |
"Typing :: Typed", | ||
] | ||
dependencies = [ | ||
'typing-extensions; python_version < "3.8"', | ||
"typing-extensions; python_version<'3.8'", | ||
] | ||
[project.urls] | ||
Changelog = "https://github.com/adamchainz/apig-wsgi/blob/main/CHANGELOG.rst" | ||
Funding = "https://adamj.eu/books/" | ||
Repository = "https://github.com/adamchainz/apig-wsgi" | ||
urls.Changelog = "https://github.com/adamchainz/apig-wsgi/blob/main/CHANGELOG.rst" | ||
urls.Funding = "https://adamj.eu/books/" | ||
urls.Repository = "https://github.com/adamchainz/apig-wsgi" | ||
|
||
[tool.isort] | ||
add_imports = [ | ||
"from __future__ import annotations" | ||
"from __future__ import annotations", | ||
] | ||
force_single_line = true | ||
profile = "black" | ||
src_paths = [ | ||
".", | ||
"example/app", | ||
"src", | ||
".", | ||
"example/app", | ||
"src", | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
|
@@ -62,14 +63,14 @@ addopts = """\ | |
branch = true | ||
parallel = true | ||
source = [ | ||
"apig_wsgi", | ||
"tests", | ||
"apig_wsgi", | ||
"tests", | ||
] | ||
|
||
[tool.coverage.paths] | ||
source = [ | ||
"src", | ||
".tox/**/site-packages", | ||
"src", | ||
".tox/**/site-packages", | ||
] | ||
|
||
[tool.coverage.report] | ||
|