-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (45 loc) · 1.55 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[project]
name = "jsonschema-specifications"
description = "Support files exposing JSON from the JSON Schema specifications"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "MIT"}
keywords = ["jsonschema", "json", "data", "validation"]
authors = [
{email = "[email protected]"},
{name = "Julian Berman"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"referencing>=0.8.9",
"importlib_resources>=1.4.0;python_version<'3.9'",
]
[project.urls]
Documentation = "https://jsonschema-specifications.readthedocs.io/"
Homepage = "https://github.com/python-jsonschema/jsonschema-specifications"
Issues = "https://github.com/python-jsonschema/jsonschema-specifications/issues/"
Funding = "https://github.com/sponsors/Julian"
Source = "https://github.com/python-jsonschema/jsonschema-specifications"
[tool.isort]
combine_as_imports = true
from_first = true
include_trailing_comma = true
multi_line_output = 3