forked from TnS-hun/kobo-book-downloader
-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
47 lines (41 loc) · 1.05 KB
/
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
40
41
42
43
44
45
46
47
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ['py38']
exclude = '\.eggs|\.git|\.mypy_cache|\.tox|\.env|\.venv|env|venv|_build|buck-out|build|dist'
[tool.isort]
line_length = 100
use_parentheses = true
include_trailing_comma = true
multi_line_output = 3
[tool.poetry]
name = "kobodl"
version = "0.9.4"
description = "Kobo Book Downloader"
authors = ["Brandon Davis <[email protected]>"]
license = "Unlicense"
include = [
"kobodl/templates",
"kobodl/commands",
]
readme = "README.md"
repository = "https://github.com/subdavis/kobo-book-downloader.git"
keywords = ["Kobo", "eBook", "Audiobook", "Downloader", "DRM"]
[tool.poetry.scripts]
kobodl = "kobodl:cli"
[tool.poetry.dependencies]
python = ">=3.6,<3.11"
beautifulsoup4 = "<5.0.0"
click = "<8"
dataclasses = "<1.0.0"
dataclasses-json = "<0.6.0"
flask = "^1.1.0"
pycryptodome = "<4"
requests = "^2.25"
tabulate = "<0.9.0"
pyperclip = "^1.8.2"
[tool.poetry.dev-dependencies]
tox = "^3.24.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"