job-research/pyproject.toml
2026-06-01 12:36:37 +02:00

31 lines
591 B
TOML

[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "job-research"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"beautifulsoup4>=4.12,<5",
"playwright>=1.52,<2",
"pydantic>=2.7,<3",
"pypdf>=5.0,<6",
"pyyaml>=6.0,<7",
"typer>=0.12,<1",
]
[dependency-groups]
dev = ["pytest>=8.2,<9"]
[project.scripts]
job-research = "job_research.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]