File: pyproject.toml

package info (click to toggle)
python-pythonjsonlogger 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: python: 1,001; makefile: 3
file content (82 lines) | stat: -rw-r--r-- 2,121 bytes parent folder | download
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
82
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "python-json-logger"
version = "3.3.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;python_version<'3.10'",
]

# 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",
    "Programming Language :: Python :: 3.13",
    "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'",
    "msgspec;implementation_name!='pypy'",
    ## 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