├── .gitignore ├── README.md ├── epub2tts_chatterbox ├── __init__.py └── epub2tts_chatterbox.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedocw/epub2tts-chatterbox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedocw/epub2tts-chatterbox/HEAD/README.md -------------------------------------------------------------------------------- /epub2tts_chatterbox/__init__.py: -------------------------------------------------------------------------------- 1 | from .epub2tts_chatterbox import main -------------------------------------------------------------------------------- /epub2tts_chatterbox/epub2tts_chatterbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedocw/epub2tts-chatterbox/HEAD/epub2tts_chatterbox/epub2tts_chatterbox.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedocw/epub2tts-chatterbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedocw/epub2tts-chatterbox/HEAD/setup.py --------------------------------------------------------------------------------