-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.02 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
[project]
name = "cfp-pipeline"
version = "0.1.0"
description = "CFP aggregator data pipeline"
authors = [
{name = "Your Name"}
]
requires-python = ">=3.11"
dependencies = [
"httpx (>=0.28.1,<0.29.0)",
"algoliasearch (>=4.35.3,<5.0.0)",
"pydantic (>=2.12.5,<3.0.0)",
"python-dotenv (>=1.2.1,<2.0.0)",
"rich (>=14.2.0,<15.0.0)",
"typer (>=0.21.1,<0.22.0)",
"duckduckgo-search (>=8.1.1,<9.0.0)",
"pyyaml (>=6.0.3,<7.0.0)",
"beautifulsoup4 (>=4.14.3,<5.0.0)",
"lxml (>=6.0.2,<7.0.0)",
"playwright (>=1.57.0,<2.0.0)",
"yt-dlp (>=2025.12.8,<2026.0.0)",
"youtube-transcript-api (>=0.6.0,<2.0)",
"spacy (>=3.7,<4.0) ; python_version >= \"3.11\" and python_version < \"3.15\""
]
[project.scripts]
cfp = "cfp_pipeline.cli:app"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pytest (>=9.0.2,<10.0.0)",
"pytest-asyncio (>=1.3.0,<2.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)",
"respx (>=0.22.0,<0.23.0)"
]