-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (88 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
96 lines (88 loc) · 2.48 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.version]
path = "src/jsonparse/version.py"
[tool.hatch.build.targets.sdist]
include = [
"src/jsonparse",
"tests",
"docs",
"Dockerfile",
]
[tool.hatch.build.targets.wheel]
packages = ["src/jsonparse"]
artifacts = [
"jsonparse/static/css/*.css",
"jsonparse/static/img/*.png",
"jsonparse/static/js/*.js",
"jsonparse/static/openapi.yaml",
"jsonparse/templates/*.html"
]
[project]
authors = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "ctrl-f for JSON. A simple JSON parsing library. Extract what's needed from key:value pairs."
dynamic = ["version"]
keywords = ["JSON", "parse", "python", "parsing", "search", "searching", "filter", "key value"]
license-files = { paths = ["LICENSE"] }
maintainers = [
]
name = "jsonparse"
packages = ["jsonparse"]
readme = "README.md"
requires-python = ">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4,!=3.5"
[project.optional-dependencies]
webapi = [
"flask==2.0.3",
"gunicorn==20.1.0",
"werkzeug==2.0.0"
]
dev = [
"hatchling==1.17.1",
"pytest==7.0.1",
"pytest-cov>=2.6.1,<3.0.0",
"flake8>=5.0.0",
"flask==2.0.3",
"gunicorn==20.1.0",
"werkzeug==2.0.0"
]
buildtest27 = [
"hatchling==0.25.1", # includes 2.7 support, but not 3.6 :/ CI will fail for 3.6
"pytest==4.6.11",
"pytest-cov==2.12.1"
]
buildtest37_onward = [
"hatchling==1.17.1", # CI fix
"pytest==7.0.1",
"pytest-cov>=2.6.1,<3.0.0",
"flake8>=5.0.0",
"flask==2.0.3",
"gunicorn==20.1.0",
"werkzeug==2.0.0"
]
[project.scripts]
jsonparse = "jsonparse.cli:entrypoint"
jp = "jsonparse.cli:entrypoint"
[project.urls]
Documentation = "https://jsonparse.readthedocs.io/en/latest/"
"Source code" = "https://github.com/ctomkow/jsonparse"
[tool.flake8]
max-line-length = 128