-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "gutenberg2kindle"
version = "0.7.0"
description = "A small Python tool to download and send ebooks from Project Gutenberg to a Kindle email address via SMTP"
authors = ["Andrés Ignacio Torres <[email protected]>"]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/aitorres/gutenberg2kindle"
keywords = [
"python",
"cli",
"ebooks",
"kindle",
"gutenberg",
"project gutenberg"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Communications :: File Sharing",
"Topic :: Utilities",
"Typing :: Typed"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/aitorres/gutenberg2kindle/issues"
"Change Log" = "https://github.com/aitorres/gutenberg2kindle/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.9"
usersettings = "^1.1.5"
requests = "^2.32.3"
[tool.poetry.dev-dependencies]
pre-commit = "^4.0.1"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
black = "^24.10.0"
flake8 = "^7.1.1"
mypy = "^1.13.0"
pylint = "^3.3.1"
isort = "^5.13.2"
types-requests = "^2.32.0.20241016"
types-usersettings = "^1.1.0.0"
[tool.isort]
src_paths = ["gutenberg2kindle", "tests"]
profile = "black"
line_length = 90
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
[tool.pylint.FORMAT]
max-line-length=90
[tool.poetry.scripts]
gutenberg2kindle = "gutenberg2kindle.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"