24 lines
572 B
TOML
24 lines
572 B
TOML
# Poetry configuration for vork-core library
|
|
|
|
[tool.poetry]
|
|
name = "vork-core"
|
|
version = "0.1.0"
|
|
description = "Core library for Vork workflow engine - nodes, links, and process management"
|
|
authors = ["Ivan Rastorguev <ivan.dev@heado.ru>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "core" },
|
|
{ include = "nodes" },
|
|
{ include = "model_nodes" },
|
|
{ include = "orm" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
sqlalchemy = "^2.0.43"
|
|
pydantic = "^2.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|