# 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 "] 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"