28 lines
668 B
TOML
28 lines
668 B
TOML
[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)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{ include = "core" },
|
|
{ include = "orm" }
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|