├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── build-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── RELEASING.md ├── SECURITY.md ├── pyproject.toml ├── src └── marshmallow_oneofschema │ ├── __init__.py │ ├── one_of_schema.py │ └── py.typed ├── tests └── test_one_of_schema.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/marshmallow_oneofschema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/src/marshmallow_oneofschema/__init__.py -------------------------------------------------------------------------------- /src/marshmallow_oneofschema/one_of_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/src/marshmallow_oneofschema/one_of_schema.py -------------------------------------------------------------------------------- /src/marshmallow_oneofschema/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_one_of_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/tests/test_one_of_schema.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/marshmallow-oneofschema/HEAD/tox.ini --------------------------------------------------------------------------------