-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reachable"
description = "Check if a URL is reachable"
dynamic = ["version"]
readme = "README.md"
authors = [{ name = "Alex Mili" }]
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
]
keywords = []
dependencies = [
"httpx[http2]",
"tldextract",
"fake-useragent",
"tqdm",
"playwright",
"brotli",
"zstandard",
]
[project.urls]
Homepage = "https://github.com/AlexMili/Reachable"
Issues = "https://github.com/AlexMili/Reachable/issues"
Repository = "https://github.com/AlexMili/Reachable"
Documentation = "https://github.com/AlexMili/Reachable"
[tool.hatch.build.targets.wheel]
packages = ["./src/reachable/"]
[tool.hatch.version]
path = "src/reachable/VERSION.md"
pattern = "(?P<version>.*)"
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["reachable"]
[tool.mypy]
strict = true
exclude = [".venv", "test", "build", "dist"]
ignore_missing_imports = true
show_error_codes = true