├── .github ├── CODEOWNERS └── workflows │ └── tests.yaml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── releasing.md ├── setup.cfg ├── src └── canonicaljson │ ├── __init__.py │ └── py.typed ├── tests ├── __init__.py └── test_canonicaljson.py └── tox.ini /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/pyproject.toml -------------------------------------------------------------------------------- /releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/releasing.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/canonicaljson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/src/canonicaljson/__init__.py -------------------------------------------------------------------------------- /src/canonicaljson/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_canonicaljson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/tests/test_canonicaljson.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/python-canonicaljson/HEAD/tox.ini --------------------------------------------------------------------------------