-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
82 lines (75 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools >= 65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wpull"
description = "Wget-compatible web downloader and crawler."
authors = [{name = "Christopher Foo", email = "[email protected]"}]
readme = "README.orig.rst"
version = "5.0.3"
license = { file = "LICENSE.txt" }
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Internet :: File Transfer Protocol (FTP)',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
]
requires-python = ">=3.12"
dependencies = [
"chardet",
"dnspython",
"html5-parser",
"lxml",
"psutil~=5.9",
"sqlalchemy==2.0.23",
"tornado~=6.4",
# Required due to yapsy 1.12.2 using deprecated modules
"yapsy @ https://github.com/tibonihoo/yapsy/tarball/master#subdirectory=package",
# Required for yapsy during testing
"packaging"
]
[project.optional-dependencies]
docs = [
"sphinx-argparse<=0.1.15",
"sphinxcontrib-napoleon>=0.2.6,<=0.5.0",
]
testing = [
"warcat"
]
[tool.setuptools]
packages = [
"wpull",
"wpull.application",
"wpull.application.plugins",
"wpull.application.tasks",
"wpull.backport",
"wpull.database",
"wpull.document",
"wpull.document.htmlparse",
"wpull.driver",
"wpull.network",
"wpull.pipeline",
"wpull.processor",
"wpull.processor.coprocessor",
"wpull.protocol.abstract",
"wpull.protocol.ftp",
"wpull.protocol.ftp.ls",
"wpull.protocol.http",
"wpull.proxy",
"wpull.scraper",
"wpull.testing",
"wpull.testing.integration",
"wpull.thirdparty",
"wpull.warc",
]
[project.urls]
Source = "https://github.com/ArchiveTeam/ludios_wpull"
[project.scripts]
wpull = "wpull.application.main:main"
wpull5 = "wpull.application.main:main"
[tool.coverage.run]
omit = [
"index_html.generated.py"
]