-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 818 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 818 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
38
39
40
41
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blink"
version = "3.0.0"
description = "Blink v3 broken-link crawler foundation"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"typer>=0.12.0",
"jsonschema>=4.22.0",
"playwright>=1.52.0",
"loguru>=0.7.0",
"rich>=13.0.0",
"lxml_html_clean>=0.4.0",
"trafilatura>=1.8.0",
"starlette>=0.37.0",
"python-multipart>=0.0.9",
"uvicorn[standard]>=0.30.0",
"apscheduler>=3.10.0",
"croniter>=2.0.0",
"httpx>=0.27.0",
"argon2-cffi>=23.1.0",
"itsdangerous>=2.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[project.scripts]
blink = "app.cli.main:app"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]