kindle manager

This commit is contained in:
gavin
2021-08-25 17:58:31 +08:00
parent 5f0c0a9724
commit 6b3c0f3b6b
303 changed files with 87829 additions and 42537 deletions

29
mobimaster/pyproject.toml Executable file
View File

@@ -0,0 +1,29 @@
[tool.poetry]
name = "mobi"
version = "0.3.1"
description = "unpack unencrypted mobi files"
authors = ["Titusz Pan <tp@py7.de>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/iscc/mobi"
repository = "https://github.com/iscc/mobi"
keywords = ["mobi", "mobipocket", "unpack", "extract", "text"]
classifiers = [
"Development Status :: 4 - Beta",
]
[tool.poetry.scripts]
mobiunpack = 'mobi.kindleunpack:main'
[tool.poetry.dependencies]
python = "^3.6"
loguru = "^0.4"
[tool.poetry.dev-dependencies]
pytest = "^5"
black = { version = "^19.10b0", python = "^3.6" }
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"