43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["hatchling >= 1.13.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "logmiddleware"
|
|
version = "0.0.4"
|
|
description = "Simplify the logging of incoming requests and outgoing responses."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = "MIT"
|
|
authors = [
|
|
{ name = "Santiago Lo Coco", email = "mail@slococo.com.ar" },
|
|
]
|
|
classifiers = [
|
|
"Intended Audience :: Information Technology",
|
|
"Intended Audience :: System Administrators",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python",
|
|
"Topic :: Internet",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development",
|
|
"Typing :: Typed",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"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",
|
|
]
|
|
dependencies = [
|
|
"fastapi>=0.103.2",
|
|
"python-json-logger>=2.0.7"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.slc.ar/slococo/logmiddleware"
|
|
Repository = "https://git.slc.ar/slococo/logmiddleware"
|
|
|