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
|
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "daiquiri"
requires-python = ">=3.10"
dynamic = ["version"]
license = {"text" = "Apache 2.0"}
description = "Library to configure Python logging easily"
readme = "README.rst"
authors = [
{name = "Julien Danjou", email = "julien@danjou.info"}
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"python-json-logger >= 3"
]
[project.urls]
homepage = "https://github.com/Mergifyio/daiquiri"
[tool.setuptools_scm]
[tool.setuptools]
packages = ["daiquiri"]
[tool.setuptools.package-data]
"daiquiri" = ["py.typed"]
[project.optional-dependencies]
test = ["pytest"]
systemd = ["systemd-python>=234"]
[tool.mypy]
files = "daiquiri"
show_error_codes = true
strict = true
[[tool.mypy.overrides]]
module = [
"systemd",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = [
"error::DeprecationWarning",
]
testpaths = ["daiquiri/tests"]
|