-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 862 Bytes
/
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
[project]
name = "minicfg"
version = "2.0.1"
description = "Lightweight and opinionated config library for your Python services."
authors = [
{name = "jieggii", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"isort>=5.13.2",
"black>=24.8.0",
"coverage>=7.6.1",
]
[tool.pdm.scripts]
test = "coverage run -m unittest discover"
cover = "coverage html"
fmt.shell = "isort ./minicfg ./tests ./examples && black ./minicfg ./tests ./examples"
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120