-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 830 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 830 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
[project]
name = "doctor-collector"
version = "1.0.0"
description = "Collects therapist contact information from therapie.de and optionally contacts them"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28",
"pydantic>=2.10",
"pyyaml>=6.0",
"beautifulsoup4>=4.12",
"aiosmtplib>=3",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.25",
"ruff>=0.9",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
doctor_collector = ["assets/*.png"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]