-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.41 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
[tool.poetry]
name = "fetcharoo"
version = "0.3.0"
description = "A Python library for downloading PDF files from webpages, with support for recursive link following, PDF merging, concurrent downloads, persistent document tracking, and change monitoring."
authors = ["Mark A. Lifson, Ph.D. <mlifson@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/MALathon/fetcharoo"
keywords = ["pdf", "download", "scraper", "web", "merge"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [{include = "fetcharoo"}]
include = ["fetcharoo/py.typed"]
exclude = ["tests/*"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = "^2.32.3"
pymupdf = "^1.25.0"
beautifulsoup4 = "^4.12.3"
tqdm = "^4.66"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
responses = "^0.25.3"
coverage = "^7.6.0"
[tool.poetry.scripts]
fetcharoo = "fetcharoo.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"