├── .github ├── FUNDING.yml ├── SECURITY.md ├── dependabot.yml ├── release.yml └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.rst ├── COPYING ├── README.rst ├── docs ├── Makefile ├── api.rst ├── changes.rst ├── compatibility.rst ├── conf.py ├── index.rst ├── intro.rst ├── requirements.in ├── requirements.txt ├── schema-packages.rst └── spelling-wordlist.txt ├── noxfile.py ├── pyproject.toml ├── referencing ├── __init__.py ├── _attrs.py ├── _attrs.pyi ├── _core.py ├── exceptions.py ├── jsonschema.py ├── py.typed ├── retrieval.py ├── tests │ ├── __init__.py │ ├── test_core.py │ ├── test_exceptions.py │ ├── test_jsonschema.py │ ├── test_referencing_suite.py │ └── test_retrieval.py └── typing.py ├── test-requirements.in ├── test-requirements.txt └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: "Julian" 4 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- 1 | docs/changes.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/COPYING -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/compatibility.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/requirements.in -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/schema-packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/schema-packages.rst -------------------------------------------------------------------------------- /docs/spelling-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/docs/spelling-wordlist.txt -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /referencing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/__init__.py -------------------------------------------------------------------------------- /referencing/_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/_attrs.py -------------------------------------------------------------------------------- /referencing/_attrs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/_attrs.pyi -------------------------------------------------------------------------------- /referencing/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/_core.py -------------------------------------------------------------------------------- /referencing/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/exceptions.py -------------------------------------------------------------------------------- /referencing/jsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/jsonschema.py -------------------------------------------------------------------------------- /referencing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /referencing/retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/retrieval.py -------------------------------------------------------------------------------- /referencing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /referencing/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/tests/test_core.py -------------------------------------------------------------------------------- /referencing/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/tests/test_exceptions.py -------------------------------------------------------------------------------- /referencing/tests/test_jsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/tests/test_jsonschema.py -------------------------------------------------------------------------------- /referencing/tests/test_referencing_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/tests/test_referencing_suite.py -------------------------------------------------------------------------------- /referencing/tests/test_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/tests/test_retrieval.py -------------------------------------------------------------------------------- /referencing/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/referencing/typing.py -------------------------------------------------------------------------------- /test-requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/test-requirements.in -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morimura07/referencing/HEAD/uv.lock --------------------------------------------------------------------------------