~cytrogen/kobo-manga

ref: 4e504823f4bf8d2b5f4279da3f4d4ebe98fc97ad kobo-manga/pyproject.toml -rw-r--r-- 582 bytes
4e504823 — HallowDem Initial commit: kobo-manga pipeline a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[project]
name = "kobo-manga"
version = "0.1.0"
description = "Automated manga download-convert-import pipeline for Kobo e-reader"
readme = "README.org"
license = "GPL-3.0-or-later"
requires-python = ">=3.12"
dependencies = [
    "httpx>=0.27",
    "pillow>=10.0",
    "pyyaml>=6.0",
    "lzstring>=1.0",
    "typer>=0.12",
]

[project.optional-dependencies]
browser = ["playwright>=1.40"]

[project.scripts]
kobo-manga = "kobo_manga.cli:app"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/kobo_manga"]