mirror of
https://github.com/vxcontrol/pentagi-taxonomy.git
synced 2026-07-01 10:05:35 -04:00
24 lines
421 B
TOML
24 lines
421 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pentagi-taxonomy"
|
|
version = "1.0.0"
|
|
description = "Pentagi taxonomy entities v1"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pydantic>=2.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["pentagi_taxonomy*"]
|
|
|