Skip to content

Commit 3aaecbb

Browse files
committed
Add the JSON Schema trove classifier and make minor tweaks.
1 parent 7d84219 commit 3aaecbb

File tree

2 files changed

+29
-21
lines changed

2 files changed

+29
-21
lines changed

docs/requirements.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
#
77
alabaster==0.7.13
88
# via sphinx
9-
attrs==22.2.0
9+
attrs==23.1.0
1010
# via referencing
1111
babel==2.12.1
1212
# via sphinx
13-
beautifulsoup4==4.12.0
13+
beautifulsoup4==4.12.2
1414
# via furo
15-
certifi==2022.12.7
15+
certifi==2023.5.7
1616
# via requests
1717
charset-normalizer==3.1.0
1818
# via requests
@@ -22,9 +22,9 @@ cycler==0.11.0
2222
# via matplotlib
2323
docutils==0.19
2424
# via sphinx
25-
fonttools==4.39.2
25+
fonttools==4.39.4
2626
# via matplotlib
27-
furo==2022.12.7
27+
furo==2023.3.27
2828
# via -r docs/requirements.in
2929
idna==3.4
3030
# via requests
@@ -40,19 +40,19 @@ markupsafe==2.1.2
4040
# via jinja2
4141
matplotlib==3.7.1
4242
# via sphinxext-opengraph
43-
numpy==1.24.2
43+
numpy==1.24.3
4444
# via
4545
# contourpy
4646
# matplotlib
47-
packaging==23.0
47+
packaging==23.1
4848
# via
4949
# matplotlib
5050
# sphinx
51-
pillow==9.4.0
51+
pillow==9.5.0
5252
# via matplotlib
5353
pyenchant==3.2.2
5454
# via sphinxcontrib-spelling
55-
pygments==2.14.0
55+
pygments==2.15.1
5656
# via
5757
# furo
5858
# pygments-github-lexers
@@ -63,19 +63,19 @@ pyparsing==3.0.9
6363
# via matplotlib
6464
python-dateutil==2.8.2
6565
# via matplotlib
66-
referencing==0.25.0
66+
referencing==0.28.1
6767
# via jsonschema-specifications
68-
requests==2.28.2
68+
requests==2.30.0
6969
# via sphinx
70-
rpds-py==0.7.0
70+
rpds-py==0.7.1
7171
# via referencing
7272
six==1.16.0
7373
# via python-dateutil
7474
snowballstemmer==2.2.0
7575
# via sphinx
76-
soupsieve==2.4
76+
soupsieve==2.4.1
7777
# via beautifulsoup4
78-
sphinx==6.1.3
78+
sphinx==6.2.1
7979
# via
8080
# -r docs/requirements.in
8181
# furo
@@ -85,7 +85,7 @@ sphinx==6.1.3
8585
# sphinxext-opengraph
8686
sphinx-basic-ng==1.0.0b1
8787
# via furo
88-
sphinx-copybutton==0.5.1
88+
sphinx-copybutton==0.5.2
8989
# via -r docs/requirements.in
9090
sphinxcontrib-applehelp==1.0.4
9191
# via sphinx
@@ -101,7 +101,7 @@ sphinxcontrib-serializinghtml==1.1.5
101101
# via sphinx
102102
sphinxcontrib-spelling==8.0.0
103103
# via -r docs/requirements.in
104-
sphinxext-opengraph==0.8.1
104+
sphinxext-opengraph==0.8.2
105105
# via -r docs/requirements.in
106-
urllib3==1.26.15
106+
urllib3==2.0.2
107107
# via requests

pyproject.toml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,34 @@ description = "The JSON Schema meta-schemas and vocabularies, exposed as a Regis
1111
readme = "README.rst"
1212
license = {text = "MIT"}
1313
requires-python = ">=3.8"
14-
keywords = ["jsonschema", "json", "data", "validation"]
14+
keywords = [
15+
"validation",
16+
"data validation",
17+
"jsonschema",
18+
"json",
19+
"json schema",
20+
]
1521
authors = [
1622
{email = "[email protected]"},
1723
{name = "Julian Berman"},
1824
]
1925
classifiers = [
2026
"Development Status :: 5 - Production/Stable",
27+
"License :: OSI Approved :: MIT License",
2128
"Operating System :: OS Independent",
2229
"Programming Language :: Python",
23-
"License :: OSI Approved :: MIT License",
2430
"Programming Language :: Python :: 3.8",
2531
"Programming Language :: Python :: 3.9",
2632
"Programming Language :: Python :: 3.10",
2733
"Programming Language :: Python :: 3.11",
2834
"Programming Language :: Python :: Implementation :: CPython",
2935
"Programming Language :: Python :: Implementation :: PyPy",
36+
"Topic :: File Formats :: JSON :: JSON Schema",
3037
]
3138
dynamic = ["version"]
3239

3340
dependencies = [
34-
"referencing>=0.25.0",
41+
"referencing>=0.28.0",
3542
"importlib_resources>=1.4.0;python_version<'3.9'",
3643
]
3744

@@ -44,7 +51,7 @@ Source = "https://github.com/python-jsonschema/jsonschema-specifications"
4451

4552
[tool.coverage.run]
4653
branch = true
47-
source = ["referencing"]
54+
source = ["jsonschema-specifications"]
4855
dynamic_context = "test_function"
4956

5057
[tool.coverage.report]
@@ -57,6 +64,7 @@ ignore = [
5764

5865
[tool.isort]
5966
combine_as_imports = true
67+
ensure_newline_before_comments = true
6068
from_first = true
6169
include_trailing_comma = true
6270
multi_line_output = 3

0 commit comments

Comments
 (0)