├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── epub2md │ └── __init__.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefengl/epub2md/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefengl/epub2md/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefengl/epub2md/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefengl/epub2md/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/epub2md/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefengl/epub2md/HEAD/src/epub2md/__init__.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefengl/epub2md/HEAD/uv.lock --------------------------------------------------------------------------------