-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
60 lines (51 loc) · 1.44 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "daiquiri"
requires-python = ">=3.8"
dynamic = ["version"]
license = {"text" = "Apache 2.0"}
description = "Library to configure Python logging easily"
readme = "README.rst"
authors = [
{name = "Julien Danjou", email = "[email protected]"}
]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"python-json-logger"
]
[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.black]
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
[tool.mypy]
files = "daiquiri"
show_error_codes = true
strict = true
[[tool.mypy.overrides]]
module = [
"pythonjsonlogger",
"systemd",
]
ignore_missing_imports = true