1
0
Fork 0
mirror of https://github.com/myned/watcher.git synced 2025-01-19 13:05:18 +00:00
watcher/pyproject.toml

27 lines
554 B
TOML
Raw Normal View History

2022-06-08 20:59:15 -05:00
[tool.poetry]
2024-05-24 17:17:41 -05:00
package-mode = false
2022-06-08 20:59:15 -05:00
name = "watcher"
version = "0.1.0"
description = "Watcher Discord Bot"
2023-03-17 08:24:38 -05:00
authors = ["Myned <dev@bjork.tech>"]
2022-06-08 20:59:15 -05:00
license = "MIT"
[tool.poetry.dependencies]
2023-03-06 21:09:43 -06:00
python = ">=3.10,<3.12"
2024-05-24 17:17:41 -05:00
toml = "^0.10.2"
uvloop = "^0.19.0"
sqlitedict = "^2.1.0"
hikari = {extras = ["speedups"], version = "^2.0.0.dev125"}
hikari-lightbulb = "^2.3.5"
hikari-miru = "^4.1.1"
2022-06-08 20:59:15 -05:00
2023-03-06 21:09:43 -06:00
[tool.poetry.group.dev.dependencies]
2022-06-08 20:59:15 -05:00
black = "*"
[tool.black]
line-length = 120
[build-system]
2023-03-17 08:49:00 -05:00
requires = ["poetry-core>=1.2.0"]
2022-06-08 20:59:15 -05:00
build-backend = "poetry.core.masonry.api"