24 lines
491 B
TOML
24 lines
491 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "kab-content-ingestion"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["httpx>=0.27,<0.28", "pydantic>=2.7,<3"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.2,<9", "ruff==0.6.9", "mypy==1.11.2"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "B", "S"]
|