Skip to content

Instantly share code, notes, and snippets.

@turukawa
Created January 29, 2021 09:31
Show Gist options
  • Save turukawa/713e76cab961a9433af2f1f61da1f5be to your computer and use it in GitHub Desktop.
Save turukawa/713e76cab961a9433af2f1f61da1f5be to your computer and use it in GitHub Desktop.
chapisha pyproject.toml
[tool.poetry]
name = "chapisha"
version = "0.1.0"
description = "Chapisha: docx to standards-compliant epub3 conversion"
authors = ["Gavin Chait <gchait@whythawk.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/whythawk/chapisha"
repository = "https://github.com/whythawk/chapisha"
documentation = "https://chapisha.readthedocs.io/"
keywords = ["python3", "epub-generation", "epub3", "docx-to-epub"]
classifiers = [
"Topic :: Text Processing",
"Topic :: Text Processing :: General"
]
include = [
"chapisha/helpers/css/*",
"chapisha/helpers/fonts/*",
"chapisha/helpers/images/*",
"chapisha/helpers/json/*",
"tests/data/*"
]
[tool.poetry.dependencies]
python = "^3.9.1"
beautifulsoup4 = "^4.9.3"
pypandoc = "^1.5"
EbookLib = "^0.17.1"
epubcheck = "^0.4.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
jupyterlab = "^3.0.5"
Sphinx = "^3.4.3"
sphinx-rtd-theme = "^0.5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment