refactor: name link generator

This commit is contained in:
TheNoxium
2025-09-11 17:21:57 +05:00
parent 64e271f7c4
commit d9a67a3d8e

View File

@@ -1,23 +1,11 @@
[project]
name = "core-library"
version = "0.1.0"
description = "Abstract classes library for the Vorkout project"
authors = [
{name = "Ivan Rastorguev", email = "ivan.dev@heado.ru"}
]
maintainers = [
{ name = "Ivan Rastorguev", email = "ivan.dev@heado.ru" },
{ name = "Vladislav Syrochkin", email = "vlad.dev@heado.ru" },
]
repository = "https://gitea.heado.ru/Vorkout/core"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"sqlalchemy (>=2.0.43,<3.0.0)",
"pydantic (>=2.0.0,<3.0.0)"
]
# 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" },
@@ -26,6 +14,11 @@ packages = [
{ 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"