├── .gitignore ├── .python-version ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── hodor └── __init__.py ├── pyproject.toml ├── setup.cfg ├── upload.sh └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/README.md -------------------------------------------------------------------------------- /hodor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/hodor/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.md 3 | -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/upload.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompileInc/hodor/HEAD/uv.lock --------------------------------------------------------------------------------