forked from Universal-Commerce-Protocol/ucp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 987 Bytes
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
[project]
name = "ucp"
version = "2026.01.23"
description = "Universal Commerce Protocol"
readme = "README.md"
requires-python = ">=3.10"
[tool.ruff]
line-length = 80
indent-width = 2
[tool.setuptools]
packages = []
[dependency-groups]
dev = [
"datamodel-code-generator[http]>=0.50.0",
"mike==2.1.3",
"mkdocs-llmstxt==0.5.0",
"mkdocs-macros-plugin==1.4.0",
"mkdocs-material[imaging]>=9.5.0",
"mkdocs-redirects==1.2.2",
"mkdocs-site-urls==0.3.1",
"pyyaml>=6.0.3",
"yamllint==1.35.1",
]
[[tool.uv.index]]
url = "https://pypi.org/simple"
default = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
preview = false
[tool.ruff.lint]
select = ["E", "F", "W", "B", "C4", "SIM", "N", "UP", "D", "PTH", "T20"]
ignore = ["D203", "D213", "T201"]
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
case-sensitive = true