├── .coveragerc ├── .coveralls.yml ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── epub_meta ├── __init__.py ├── collector.py ├── exceptions.py ├── runner.py └── tests │ ├── __init__.py │ └── tests.py ├── requirements-dev.txt ├── requirements.txt ├── samples ├── backbone-fundamentals.epub ├── georgia-cfi-20120521.epub ├── georgia-pls-ssml-20120322.epub ├── high-performance-computing-5.2.epub ├── mathjax_tests.epub ├── moby-dick.epub └── progit.epub ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/README.md -------------------------------------------------------------------------------- /epub_meta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/epub_meta/__init__.py -------------------------------------------------------------------------------- /epub_meta/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/epub_meta/collector.py -------------------------------------------------------------------------------- /epub_meta/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/epub_meta/exceptions.py -------------------------------------------------------------------------------- /epub_meta/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/epub_meta/runner.py -------------------------------------------------------------------------------- /epub_meta/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /epub_meta/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/epub_meta/tests/tests.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | coverage==4.2 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/backbone-fundamentals.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/backbone-fundamentals.epub -------------------------------------------------------------------------------- /samples/georgia-cfi-20120521.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/georgia-cfi-20120521.epub -------------------------------------------------------------------------------- /samples/georgia-pls-ssml-20120322.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/georgia-pls-ssml-20120322.epub -------------------------------------------------------------------------------- /samples/high-performance-computing-5.2.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/high-performance-computing-5.2.epub -------------------------------------------------------------------------------- /samples/mathjax_tests.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/mathjax_tests.epub -------------------------------------------------------------------------------- /samples/moby-dick.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/moby-dick.epub -------------------------------------------------------------------------------- /samples/progit.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/samples/progit.epub -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulocheque/epub-meta/HEAD/tox.ini --------------------------------------------------------------------------------