21 lines
391 B
TOML
21 lines
391 B
TOML
|
[tool.poetry]
|
||
|
name = "coolbot"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Guanran Wang <guanran928@outlook.com>"]
|
||
|
readme = "README.md"
|
||
|
license = "MIT"
|
||
|
packages = [
|
||
|
{ include = "coolbot" }
|
||
|
]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.10"
|
||
|
matrix-nio = "^0.24.0"
|
||
|
requests = "^2.32.3"
|
||
|
humanize = "^4.10.0"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|