-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.09 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "python-logdog"
authors = [{ name = "Adam Wasilewski" }]
description = "Python logging utilities"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["logging"]
license.text = "MIT License"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: System :: Logging",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://a-was.github.io/logdog.py/"
Homepage = "https://github.com/a-was/logdog.py"
Repository = "https://github.com/a-was/logdog.py"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { file = "VERSION" }
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"examples/**" = ["F401", "E402", "E501"]
"tests/**" = ["E501"]