-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "log21"
authors = [
{name = "CodeWriter21(Mehrad Pooryoussof)", email = "CodeWriter21@gmail.com"}
]
description = "A simple logging package"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
keywords = ['python', 'log', 'colorize', 'color', 'logging', 'Python3', 'CodeWriter21']
license = {text = "Apache License 2.0"}
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X"
]
dependencies = [
"webcolors",
"docstring-parser"
]
version = "3.0.1"
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[project.urls]
Homepage = "https://github.com/MPCodeWriter21/log21"
Donations = "https://github.com/MPCodeWriter21/log21/blob/master/DONATE.md"
Source = "https://github.com/MPCodeWriter21/log21"
[tool.yapf]
column_limit = 88
split_before_dot = true
dedent_closing_brackets = true
split_before_first_argument = true
[tool.isort]
line_length = 88
order_by_type = true
length_sort = true
combine_as_imports = true
[tool.docformatter]
recursive = true
wrap-summaries = 88
wrap-descriptions = 88
[tool.ruff]
show-fixes = true
exclude = ["migrations"]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
extend-select = ["C4", "SIM", "TCH", "PL", "ANN", "N", "B"]
ignore = ["PLR0911", "PLR0912", "PLR0913", "PLR0914", "ANN101", "B008", "N816",
"ANN002", "ANN003", "ANN401", "N802", "PLR2004"]