├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── docs.yml │ └── test.yml ├── .gitignore ├── .linkcheckerrc ├── LICENSE.txt ├── README.md ├── docs ├── api.md ├── assets │ └── css │ │ └── custom.css ├── changelog.md ├── index.md └── usage.md ├── hatch.toml ├── mkdocs.yml ├── pyproject.toml ├── ruff.toml ├── ruff_defaults.toml ├── src └── msgspec_click │ ├── __init__.py │ ├── _core.py │ └── py.typed └── tests ├── __init__.py └── test_options.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.gitignore -------------------------------------------------------------------------------- /.linkcheckerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/.linkcheckerrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/docs/assets/css/custom.css -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/docs/usage.md -------------------------------------------------------------------------------- /hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/hatch.toml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/pyproject.toml -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/ruff.toml -------------------------------------------------------------------------------- /ruff_defaults.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/ruff_defaults.toml -------------------------------------------------------------------------------- /src/msgspec_click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/src/msgspec_click/__init__.py -------------------------------------------------------------------------------- /src/msgspec_click/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/src/msgspec_click/_core.py -------------------------------------------------------------------------------- /src/msgspec_click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/msgspec-click/HEAD/tests/test_options.py --------------------------------------------------------------------------------