-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.04 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
[project]
name = "lgsf"
version = "0.0.0"
description = "The Local Government Scraper Framework is a set of tools for scraping UK local government websites"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"beautifulsoup4==4.13.4",
"cryptography==46.0.6",
"html5lib>=1.1",
"httpx==0.28.1",
"lxml>=6.0.1",
"pyjwt==2.12.0",
"python-dateutil==2.9.0.post0",
"python-slugify==8.0.4",
"requests[security]==2.33.0",
"retry2==0.9.5",
"rich==14.0.0",
"rnet==3.0.0rc10",
]
[dependency-groups]
dev = [
"ipdb==0.13.13",
"pre-commit==4.2.0",
"pystache==0.6.8",
"pytest==8.4.1",
"pytest-blockage==0.2.4",
"pytest-mypy-plugins==3.2.0",
"pytest-ruff==0.5",
"ruff==0.12.0",
]
cdk = [
"aws-cdk-lib>=2.100.0,<3.0.0",
"constructs>=10.0.0,<11.0.0",
"aws-cdk-aws-lambda-python-alpha>=2.100.0,<3.0.0",
]
[tool.uv]
package = false
required-version = "==0.9.*"
[tool.pytest.ini_options]
testpaths = ["lgsf", "scrapers"]
norecursedirs = ["cdk.out", "node_modules", ".venv", ".git"]