21 lines
469 B
TOML
21 lines
469 B
TOML
[project]
|
|
name = "abx-spec-config"
|
|
version = "0.1.0"
|
|
description = "The common shared interfaces for the ABX ArchiveBox plugin ecosystem."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"abx>=0.1.0",
|
|
"python-benedict>=0.34.0",
|
|
"pydantic>=2.9.2",
|
|
"pydantic-settings>=2.6.0",
|
|
"rich>=13.9.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project.entry-points.abx]
|
|
abx_spec_config = "abx_spec_config"
|