-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.37 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "wheel"]
[project]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
]
dependencies = ["deepdiff ~=8.6", "argcomplete ~=3.6", "tree-sitter >=0.25", "tree-sitter-json >=0.24", "fast-diff-match-patch ~=2.1"]
description = "keep comment(round-trip) when read & write jsonc/hjson, sdict with extra context(parent/keypath), weakList & OrderedWeakSet"
keywords = ["config", "json", "jsonc", "hjson", "round-trip", "comment", "deepdiff", "deepmerge", "benedict", "weakList", "OrderedWeakSet"]
name = "jsonc_sdict"
readme = "README.md"
requires-python = ">=3.13"
version = "0.2.20260503"
[[project.authors]]
email = "nolca@qq.com"
name = "nolca"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
dev = ["pytest", "hjson"]
[project.urls]
Download = "http://github.com/AClon314/jsonc-sdict/releases"
Homepage = "http://github.com/AClon314/jsonc-sdict"
[project.scripts]
deep-merge = "jsonc_sdict.Merge:_main_"
# NOTE: local dev
[tool.ty.environment]
extra-paths = ["./.thirdparty/fast_diff_match_patch"]