Skip to content

Commit bcb9a08

Browse files
committed
One sentence README and a readthedocs config.
1 parent 20c8938 commit bcb9a08

File tree

6 files changed

+34
-1
lines changed

6 files changed

+34
-1
lines changed

.readthedocs.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
3+
sphinx:
4+
builder: dirhtml
5+
configuration: docs/conf.py
6+
fail_on_warning: true
7+
8+
formats: all
9+
10+
python:
11+
version: "3.8"
12+
install:
13+
- requirements: docs/requirements.txt
14+
- method: pip
15+
path: .

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
|PyPI| |Pythons| |CI| |ReadTheDocs|
66

7+
JSON support files from the `JSON Schema Specifications <https://json-schema.org/specification.html>`_ (metaschemas, vocabularies, etc.), packaged for runtime access from Python.
8+
79
.. |PyPI| image:: https://img.shields.io/pypi/v/jsonschema-specifications.svg
810
:alt: PyPI version
911
:target: https://pypi.org/project/jsonschema-specifications/

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def entire_domain(host):
5252

5353
intersphinx_mapping = {
5454
"python": ("https://docs.python.org/3", None),
55+
"referencing": ("https://referencing.readthedocs.io/en/latest/", None),
5556
}
5657

5758
# -- sphinxcontrib-spelling --

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.. include:: ../README.rst
22

3+
Resources are exposed via a `referencing.Registry`.
34

45
Contents
56
--------

docs/requirements.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#
77
alabaster==0.7.12
88
# via sphinx
9+
attrs==22.2.0
10+
# via referencing
911
babel==2.11.0
1012
# via sphinx
1113
beautifulsoup4==4.11.1
@@ -19,7 +21,9 @@ docutils==0.19
1921
furo==2022.12.7
2022
# via -r docs/requirements.in
2123
idna==3.4
22-
# via requests
24+
# via
25+
# requests
26+
# yarl
2327
imagesize==1.4.1
2428
# via sphinx
2529
jinja2==3.1.2
@@ -28,6 +32,8 @@ file:.#egg=jsonschema_specifications
2832
# via -r docs/requirements.in
2933
markupsafe==2.1.1
3034
# via jinja2
35+
multidict==6.0.4
36+
# via yarl
3137
packaging==22.0
3238
# via sphinx
3339
pyenchant==3.2.2
@@ -39,8 +45,12 @@ pygments==2.13.0
3945
# sphinx
4046
pygments-github-lexers==0.0.5
4147
# via -r docs/requirements.in
48+
pyrsistent==0.19.2
49+
# via referencing
4250
pytz==2022.7
4351
# via babel
52+
referencing==0.8.8
53+
# via jsonschema-specifications
4454
requests==2.28.1
4555
# via sphinx
4656
snowballstemmer==2.2.0
@@ -77,3 +87,5 @@ sphinxext-opengraph==0.7.4
7787
# via -r docs/requirements.in
7888
urllib3==1.26.13
7989
# via requests
90+
yarl==1.8.2
91+
# via referencing

docs/spelling-wordlist.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
metaschemas
2+
runtime

0 commit comments

Comments
 (0)