-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.03 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
[project]
name = "archivooor"
version = "0.1.0"
description = "A Python package to submit web pages to the Wayback Machine for archiving."
authors = [
{ name = "Barabazs", email = "31799121+Barabazs@users.noreply.github.com" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"click>=8.3.2",
"keyring>=25.7.0",
"requests>=2.33.1",
"urllib3>=2.6.3",
]
[project.urls]
Homepage = "https://github.com/Barabazs/archivooor"
Repository = "https://github.com/Barabazs/archivooor"
[project.scripts]
archivooor = "archivooor.cli:cli"
[dependency-groups]
dev = [
"mypy>=1.15.0",
"prek>=0.3.8",
"ruff>=0.11.0",
"pytest>=8.0",
"responses>=0.25.0",
"types-requests>=2.33.0.20260408",
]
[tool.uv]
exclude-newer = "1 week"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
select = [
"I", # isort
# "PL", # pylint
# "E", # pycodestyle
# "W", # pycodestyle
]