41 lines
925 B
TOML
41 lines
925 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "helia"
|
|
version = "0.1.0"
|
|
description = "Agentic Interview Analysis Framework"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"langchain[openai]>=1.2.0",
|
|
"qdrant-client",
|
|
"pydantic-settings>=2.12.0",
|
|
"PyYAML>=6.0.1",
|
|
"langgraph>=1.0.5",
|
|
"pydantic>=2.12.5",
|
|
"beanie>=2.0.1",
|
|
"motor>=3.7.1",
|
|
"obstore>=0.8.2",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/helia"]
|
|
|
|
[dependency-groups]
|
|
dev = ["ruff>=0.14.10", "ty>=0.0.5"]
|
|
cli = ["textual>=6.11.0", "tqdm>=4.67.1"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py314"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["ALL"]
|
|
ignore = ["D", "BLE", "EM101", "EM102", "E501", "COM812", "TD003", "TRY003"]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
# https://github.com/google/styleguide/blob/gh-pages/pyguide.md#38-comments-and-docstrings
|
|
convention = "google"
|