-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (58 loc) · 1.95 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
61
62
63
64
65
66
67
68
[project]
name = "sb-json-tools"
version = "0.10.2"
readme = "README.md"
authors = [
{ name = "Språkbanken at the University of Gothenburg", email = "[email protected]" },
]
license = { text = "MIT" }
requires-python = ">=3.9"
description = "Tools for working with JSON files."
classifiers = [
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
# "Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
# "uncomment if you test on these interpreters:",
# "Programming Language :: Python :: Implementation :: IronPython",
# "Programming Language :: Python :: Implementation :: Jython",
# "Programming Language :: Python :: Implementation :: Stackless",
"Topic :: Utilities",
]
dependencies = ["fastjsonschema>=2.19.1", "json-arrays>=0.14.1"]
[project.optional-dependencies]
cli = ["typer>=0.13.1"]
[project.urls]
"Bug Tracker" = "https://github.com/spraakbanken/python-json-tools/issues"
Repository = "https://github.com/spraakbanken/python-json-tools"
Homepage = "https://github.com/spraakbanken/python-json-tools"
[project.scripts]
jt = "sb_json_tools.cli:cli"
[dependency-groups]
dev = [
"pytest>=8.2.1",
"pytest-cov>=5.0.0",
"ruff>=0.4.4",
"mypy>=1.10.0",
"hypothesis>=6.102.4",
]
release = ["bump-my-version>=0.21.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["/.github", "/docs"]
[tool.hatch.build.targets.wheel]
packages = ["sb_json_tools"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv]
package = true