├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README.rst ├── mkepub ├── __init__.py ├── mkepub.py ├── templates │ ├── container.xml │ ├── cover.xhtml │ ├── package.opf │ ├── page.xhtml │ ├── toc.ncx │ └── toc.xhtml └── tests │ ├── LinBiolinum_K.woff │ ├── __init__.py │ ├── cover.jpg │ └── test_mkepub.py ├── setup.cfg └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/README.rst -------------------------------------------------------------------------------- /mkepub/__init__.py: -------------------------------------------------------------------------------- 1 | from .mkepub import Book 2 | -------------------------------------------------------------------------------- /mkepub/mkepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/mkepub.py -------------------------------------------------------------------------------- /mkepub/templates/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/templates/container.xml -------------------------------------------------------------------------------- /mkepub/templates/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/templates/cover.xhtml -------------------------------------------------------------------------------- /mkepub/templates/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/templates/package.opf -------------------------------------------------------------------------------- /mkepub/templates/page.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/templates/page.xhtml -------------------------------------------------------------------------------- /mkepub/templates/toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/templates/toc.ncx -------------------------------------------------------------------------------- /mkepub/templates/toc.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/templates/toc.xhtml -------------------------------------------------------------------------------- /mkepub/tests/LinBiolinum_K.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/tests/LinBiolinum_K.woff -------------------------------------------------------------------------------- /mkepub/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mkepub/tests/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/tests/cover.jpg -------------------------------------------------------------------------------- /mkepub/tests/test_mkepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/mkepub/tests/test_mkepub.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENSE 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqxyr/mkepub/HEAD/setup.py --------------------------------------------------------------------------------