-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (60 loc) · 1.98 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
69
[project]
name = "json-arrays"
version = "0.15.0"
description = "Stream JSON and JSON-Lines lazily."
authors = [
{ name = "Språkbanken Text", email = "sb-info@svenska.gu.se" },
{ name = "Kristoffer Andersson", email = "kristoffer.andersson@gu.se" },
]
license = { text = "MIT" }
dependencies = ["ijson>=3.2.3"]
readme = "README.md"
requires-python = ">= 3.9"
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",
]
[project.urls]
Homepage = "https://github.com/spraakbanken/json-arrays-py"
Repository = "https://github.com/spraakbanken/json-arrays-py"
"Bug Tracker" = "https://github.com/spraakbanken/json-arrays-py/issues"
[project.optional-dependencies]
orjson = ["orjson>=3.9.13"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"mypy>=1.8.0",
"pytest-cov>=4.1.0",
"types-orjson>=3.6.2",
"watchfiles>=0.21.0",
"ruff>=0.2.1",
"bump-my-version>=0.19.0",
"syrupy>=4.6.1",
"pytest-benchmark>=5.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = ["/.github", "/docs"]
[tool.hatch.build.targets.wheel]
packages = ["src/json_arrays"]
[tool.uv]
package = true