-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (27 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
37 lines (27 loc) · 766 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pywaybackup"]
[project]
dependencies = [
"ruff",
"SQLAlchemy==2.0.43",
"requests==2.32.3",
"tqdm==4.67.1",
"python-magic-standalone==0.4.28",
]
name = "pywaybackup"
version = "4.1.6"
description = "Query and download archive.org as simple as possible."
authors = [{ name = "bitdruid", email = "bitdruid@outlook.com" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8,<3.14"
[project.scripts]
waybackup = "pywaybackup.main:cli"
[project.urls]
homepage = "https://github.com/bitdruid/python-wayback-machine-downloader"
[tool.ruff]
line-length = 120
exclude = ["pywaybackup/Arguments.py"]