17 lines
430 B
TOML
17 lines
430 B
TOML
[project]
|
|
name = "koios-utils"
|
|
version = "0.1.0"
|
|
description = "Operator scripts for the Koios unified Neo4j knowledge graph — schema init and validation"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"neo4j>=5.19,<6",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
# These are operator scripts, not a library. Don't try to package them.
|
|
bypass-selection = true
|