mirror of
https://gitflic.ru/project/maks1ms/ocab.git
synced 2025-04-05 09:03:48 +03:00
27 lines
660 B
TOML
27 lines
660 B
TOML
[tool.poetry]
|
|
name = "ocab-core"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Максим Слипенко <maxim@slipenko.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "~3.12"
|
|
aiogram = "^3.10.0"
|
|
setuptools = "^71.0.1"
|
|
restrictedpython = "^7.1"
|
|
semver = "^3.0.2"
|
|
dataclasses-json = "^0.6.7"
|
|
fastapi = { version = "^0.111.1", optional = true }
|
|
hypercorn = { version = "^0.17.3", optional = true }
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ocab-modules = { path = "../ocab_modules", develop = true }
|
|
|
|
[tool.poetry.extras]
|
|
webhook = ["fastapi", "hypercorn"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|