refactor: name link generator
This commit is contained in:
@@ -1,23 +1,11 @@
|
|||||||
[project]
|
# Poetry configuration for vork-core library
|
||||||
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)"
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.poetry]
|
[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 = [
|
packages = [
|
||||||
{ include = "core" },
|
{ include = "core" },
|
||||||
{ include = "nodes" },
|
{ include = "nodes" },
|
||||||
@@ -26,6 +14,11 @@ packages = [
|
|||||||
{ include = "orm" }
|
{ include = "orm" }
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.9"
|
||||||
|
sqlalchemy = "^2.0.43"
|
||||||
|
pydantic = "^2.0.0"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|||||||
Reference in New Issue
Block a user