forked from nhairs/python-json-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (73 loc) · 2.06 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-json-logger"
version = "3.1.0"
description = "JSON Log Formatter for the Python Logging Package"
authors = [
{name = "Zakaria Zajac", email = "zak@madzak.com"},
{name = "Nicholas Hairs", email = "info+python-json-logger@nicholashairs.com"},
]
maintainers = [
{name = "Nicholas Hairs", email = "info+python-json-logger@nicholashairs.com"},
]
# Dependency Information
requires-python = ">=3.8"
dependencies = [
"typing_extensions",
]
# Extra information
readme = "README.md"
license = {text = "BSD-2-Clause License"}
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Logging",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://nhairs.github.io/python-json-logger"
GitHub = "https://github.com/nhairs/python-json-logger"
[project.optional-dependencies]
dev = [
## Optional but required for dev
"orjson;implementation_name!='pypy' and python_version<'3.13'",
"msgspec;implementation_name!='pypy' and python_version<'3.13'",
## Lint
"validate-pyproject[all]",
"black",
"pylint",
"mypy",
## Test
"pytest",
"freezegun",
"backports.zoneinfo;python_version<'3.9'",
"tzdata",
## Build
"build",
## Docs
"mkdocs",
"mkdocs-material>=8.5",
"mkdocs-awesome-pages-plugin",
"mdx_truly_sane_lists",
"mkdocstrings[python]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mike",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pythonjsonlogger*"]
[tool.setuptools.package-data]
pythonjsonlogger = ["py.typed"]
[tool.black]
line-length = 100