46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lilith-platform-knowledge-ai"
|
|
version = "0.1.0"
|
|
description = "Crystal — Lilith platform content auditor. Scans source material for inconsistencies."
|
|
readme = {text = "", content-type = "text/plain"}
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
authors = [{ name = "Lilith Collective" }]
|
|
keywords = ["platform", "audit", "validation", "content", "consistency"]
|
|
dependencies = [
|
|
"rich>=13.0.0",
|
|
"pydantic>=2.10.0",
|
|
"pydantic-settings>=2.6.0",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/lilith_platform_knowledge_ai"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["/src", "/tests"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
src = ["src", "tests"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM", "RUF", "PTH"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["lilith_*"]
|