-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 795 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 795 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
[project]
name = "scraper"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Victor Matekole", email = "github@matekole.com"},
]
dependencies = [
"pydantic>=2.7.1",
"scrapy>=2.11.1",
"pydantic-settings>=2.2.1",
"responses>=0.25.0",
"google-cloud-bigquery>=3.24.0",
"python-dotenv>=1.0.1",
"httpx>=0.27.0",
]
requires-python = "==3.12.*"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"rich>=13.7.1",
"pytest>=8.1.1",
"validators>=0.28.3",
"pytest-twisted>=1.14.1",
"pytest-asyncio>=0.23.7",
"pytest-mock>=3.14.0",
]
[tool.pdm]
distribution = false
[tool.pytest.ini_options]
pythonpath = ["./src"]
log_cli = true
[tool.black]
skip-string-normalization = true