-
-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1019 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1019 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
42
43
44
45
46
47
48
[project]
name = "shot-scraper"
version = "1.10"
description = "A CLI utility for taking screenshots of websites, recording video demos and scraping sites using JavaScript"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{ name = "Simon Willison" }
]
dependencies = [
"click",
"PyYAML",
"pydantic",
"playwright>=1.61.0",
"click-default-group",
]
[project.urls]
Homepage = "https://shot-scraper.datasette.io/"
Issues = "https://github.com/simonw/shot-scraper/issues"
CI = "https://github.com/simonw/shot-scraper/actions"
Changelog = "https://github.com/simonw/shot-scraper/releases"
[project.scripts]
shot-scraper = "shot_scraper.cli:cli"
[dependency-groups]
dev = [
"pytest",
"cogapp",
"pytest-mock",
]
docs = [
"furo==2023.9.10",
"sphinx-autobuild",
"sphinx-copybutton",
"myst-parser",
"cogapp",
]
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""