-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.34 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
64
65
66
67
[project]
name = "tstring-structured-data-workspace"
version = "0.1.0"
description = "Workspace for parser-first JSON, TOML, and YAML PEP 750 t-string backends"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"json-tstring>=0.1.0",
"toml-tstring>=0.1.0",
"tstring-core>=0.1.0",
"yaml-tstring>=0.1.0",
]
[build-system]
requires = ["uv_build>=0.11.6,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"inline-snapshot>=0.32.5",
"json-tstring>=0.1.0",
"maturin>=1.8.0",
"pytest>=8.4.0",
"ruff>=0.11.0",
"toml-tstring>=0.1.0",
"tstring-core>=0.1.0",
"ty>=0.0.23",
"yaml-tstring>=0.1.0",
]
docs = [
"zensical>=0.0.15",
]
[tool.uv.workspace]
members = [
"json-tstring",
"rust/python-bindings",
"toml-tstring",
"tstring-core",
"yaml-tstring",
]
[tool.uv]
package = false
[tool.uv.sources]
json-tstring = { workspace = true }
toml-tstring = { workspace = true }
tstring-bindings = { workspace = true }
tstring-core = { workspace = true }
yaml-tstring = { workspace = true }
[tool.pytest.ini_options]
testpaths = [
"json-tstring/tests",
"toml-tstring/tests",
"yaml-tstring/tests",
]
[tool.inline-snapshot]
format-command = "ruff format --stdin-filename {filename}"
[tool.ruff]
target-version = "py314"
[tool.ruff.lint]
select = ["B", "E", "F", "I"]