-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (33 loc) · 972 Bytes
/
pyproject.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "comicon"
version = "1.4.0"
description = "A simple comic conversion library between CBZ/EPUB/MOBI/PDF"
authors = ["potatoeggy <eggyrules@gmail.com>"]
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/potatoeggy/comicon"
documentation = "https://github.com/potatoeggy/comicon"
keywords = ["converter", "comic", "cbz", "epub", "pdf", "mobi"]
[tool.poetry.dependencies]
python = ">=3.10"
ebooklib = "^0.18"
pillow = "^11.1.0"
lxml = "^5.3.0"
pypdf = { extras = ["image"], version = "^5.1.0" }
python-slugify = "^8.0.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
mccabe.max-complexity = 18
select = ["B", "C", "E", "F", "I", "W"]
ignore = ["B905"]
exclude = ["build/*"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["E501"]