-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1.8 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
[project]
name = "liblog"
authors = [
{name = "Io-no"},
]
description = "A Python library that provides an easy and transparent way to manage logging across different modules and submodules."
requires-python = ">= 3.10"
license = {file = "LICENSE"}
version = "0.1.0"
readme = {file = "README.md", content-type = "text/markdown"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Debuggers",
"Typing :: Typed",
]
keywords = ["liblog", "logging", "logger", "log", "dev", "developer"]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://libdebug.org"
repository = "https://github.com/io_no/liblog/"
issues = "https://github.com/io_no/liblog/issues"
[tool.ruff]
include = ["pyproject.toml", "liblog/**/*.py"]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D100", "EM", "FBT", "G", "TD", "TRY002", "TRY003", "RET505", "SLF001", "S603", "S606", "PYI021", "D212"]
[tool.ruff.lint.per-file-ignores]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"