39 lines
839 B
TOML
39 lines
839 B
TOML
[project]
|
|
name = "librarian-core"
|
|
version = "0.1.6"
|
|
readme = "README.md"
|
|
description = "Shared datamodel & utils for the Librarian project"
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{ name = "DotNaos", email = "schuetzoliver00@gmail.com" }
|
|
]
|
|
dependencies = [
|
|
"pandas>=2.2.3",
|
|
"platformdirs>=4.3.7",
|
|
"pydantic-settings>=2.9.1",
|
|
"supabase",
|
|
"tabulate>=0.9.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0", # Testing framework
|
|
"pytest-cov", # Coverage reporting
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
# src/ layout
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/librarian_core"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
addopts = "--cov=librarian_core --cov-report=term-missing"
|
|
|
|
[tool.coverage.run]
|
|
source = ["librarian_core"]
|