22 lines
440 B
TOML
22 lines
440 B
TOML
[project]
|
|
name = "wiki-bot"
|
|
version = "0.1.0"
|
|
description = "Bot for wiki-master"
|
|
authors = [
|
|
{name = "Pascal Phelipot",email = "pascal@phelipot.me"}
|
|
]
|
|
requires-python = ">=3.10,<4.0"
|
|
dependencies = [
|
|
"httpx (>=0.28.1,<0.29.0)",
|
|
"pendulum (>=3.2.0,<4.0.0)",
|
|
"sqlalchemy (>=2.0.51,<3.0.0)",
|
|
"loguru (>=0.7.3,<0.8.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|