-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.26 KB
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
[project]
name = "web2pdfbook"
version = "0.1.2"
description = "Convert website documentation into a PDF book"
readme = "README.md"
authors = [{name = "Nomena Rakotoarison", email = "nomenaarison@gmail.com"}]
keywords = ["pdf", "web", "crawler", "documentation"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"PyPDF2",
"playwright",
"beautifulsoup4",
"requests",
"rich",
]
[project.urls]
Source = "https://github.com/nomenarkt/web2PDFbook"
Issues = "https://github.com/nomenarkt/web2PDFbook/issues"
Homepage = "https://github.com/nomenarkt/web2PDFbook"
[project.scripts]
web2pdfbook = "web2pdfbook.cli:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
extend-select = ["I"]
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
show_error_codes = true
ignore_missing_imports = true
follow_imports = "skip"
[tool.coverage.run]
branch = true
source = ["."]
[tool.coverage.report]
fail_under = 85
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["."]
include = ["web2pdfbook*"]