-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release v0.7 * blacken * try pyright-action * pyright --verifytypes * deferred evaluation of annotations * is that really needed? * fill out dostrings
- Loading branch information
Showing
10 changed files
with
186 additions
and
116 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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pytest-structlog" | ||
dynamic = ["version"] | ||
description = "Structured logging assertions" | ||
classifiers = [ | ||
"Framework :: Pytest", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"pytest", | ||
"structlog>=22.2.0", | ||
] | ||
|
||
[[project.authors]] | ||
name = "Wim Glenn" | ||
email = "[email protected]" | ||
|
||
[project.license] | ||
text = "MIT" | ||
|
||
[project.readme] | ||
file = "README.rst" | ||
content-type = "text/x-rst; charset=UTF-8" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/wimglenn/pytest-structlog" | ||
|
||
[project.entry-points.pytest11] | ||
pytest-structlog = "pytest_structlog" | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "pytest_structlog.__version__"} |
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
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
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
Oops, something went wrong.