Skip to content

Commit

Permalink
Add the JSON Schema trove classifier and make minor tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed May 17, 2023
1 parent 7d84219 commit 3aaecbb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 21 deletions.
34 changes: 17 additions & 17 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
#
alabaster==0.7.13
# via sphinx
attrs==22.2.0
attrs==23.1.0
# via referencing
babel==2.12.1
# via sphinx
beautifulsoup4==4.12.0
beautifulsoup4==4.12.2
# via furo
certifi==2022.12.7
certifi==2023.5.7
# via requests
charset-normalizer==3.1.0
# via requests
Expand All @@ -22,9 +22,9 @@ cycler==0.11.0
# via matplotlib
docutils==0.19
# via sphinx
fonttools==4.39.2
fonttools==4.39.4
# via matplotlib
furo==2022.12.7
furo==2023.3.27
# via -r docs/requirements.in
idna==3.4
# via requests
Expand All @@ -40,19 +40,19 @@ markupsafe==2.1.2
# via jinja2
matplotlib==3.7.1
# via sphinxext-opengraph
numpy==1.24.2
numpy==1.24.3
# via
# contourpy
# matplotlib
packaging==23.0
packaging==23.1
# via
# matplotlib
# sphinx
pillow==9.4.0
pillow==9.5.0
# via matplotlib
pyenchant==3.2.2
# via sphinxcontrib-spelling
pygments==2.14.0
pygments==2.15.1
# via
# furo
# pygments-github-lexers
Expand All @@ -63,19 +63,19 @@ pyparsing==3.0.9
# via matplotlib
python-dateutil==2.8.2
# via matplotlib
referencing==0.25.0
referencing==0.28.1
# via jsonschema-specifications
requests==2.28.2
requests==2.30.0
# via sphinx
rpds-py==0.7.0
rpds-py==0.7.1
# via referencing
six==1.16.0
# via python-dateutil
snowballstemmer==2.2.0
# via sphinx
soupsieve==2.4
soupsieve==2.4.1
# via beautifulsoup4
sphinx==6.1.3
sphinx==6.2.1
# via
# -r docs/requirements.in
# furo
Expand All @@ -85,7 +85,7 @@ sphinx==6.1.3
# sphinxext-opengraph
sphinx-basic-ng==1.0.0b1
# via furo
sphinx-copybutton==0.5.1
sphinx-copybutton==0.5.2
# via -r docs/requirements.in
sphinxcontrib-applehelp==1.0.4
# via sphinx
Expand All @@ -101,7 +101,7 @@ sphinxcontrib-serializinghtml==1.1.5
# via sphinx
sphinxcontrib-spelling==8.0.0
# via -r docs/requirements.in
sphinxext-opengraph==0.8.1
sphinxext-opengraph==0.8.2
# via -r docs/requirements.in
urllib3==1.26.15
urllib3==2.0.2
# via requests
16 changes: 12 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,34 @@ description = "The JSON Schema meta-schemas and vocabularies, exposed as a Regis
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.8"
keywords = ["jsonschema", "json", "data", "validation"]
keywords = [
"validation",
"data validation",
"jsonschema",
"json",
"json schema",
]
authors = [
{email = "[email protected]"},
{name = "Julian Berman"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: File Formats :: JSON :: JSON Schema",
]
dynamic = ["version"]

dependencies = [
"referencing>=0.25.0",
"referencing>=0.28.0",
"importlib_resources>=1.4.0;python_version<'3.9'",
]

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

[tool.coverage.run]
branch = true
source = ["referencing"]
source = ["jsonschema-specifications"]
dynamic_context = "test_function"

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

[tool.isort]
combine_as_imports = true
ensure_newline_before_comments = true
from_first = true
include_trailing_comma = true
multi_line_output = 3

0 comments on commit 3aaecbb

Please sign in to comment.