2025-03-22 16:04:53 +01:00
|
|
|
[project]
|
|
|
|
name = "botbotbot-py"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Discord Chaos Bot"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.13"
|
2025-03-22 16:10:42 +01:00
|
|
|
dependencies = [
|
2025-03-22 17:01:33 +01:00
|
|
|
"audioop-lts>=0.2.1",
|
2025-03-22 22:31:39 +01:00
|
|
|
"emoji>=2.14.1",
|
2025-03-22 17:01:33 +01:00
|
|
|
"mistralai>=1.6.0",
|
|
|
|
"py-cord>=2.6.1",
|
|
|
|
"pynacl>=1.5.0",
|
2025-03-22 20:52:22 +01:00
|
|
|
"requests>=2.32.3",
|
2025-03-22 16:10:42 +01:00
|
|
|
]
|
2025-03-22 16:04:53 +01:00
|
|
|
|
2025-03-22 18:32:13 +01:00
|
|
|
[project.scripts]
|
2025-05-04 21:10:41 +02:00
|
|
|
botbotbot = "botbotbot:main"
|
2025-03-22 18:32:13 +01:00
|
|
|
|
2025-03-22 16:04:53 +01:00
|
|
|
[dependency-groups]
|
|
|
|
dev = [
|
|
|
|
"isort>=6.0.1",
|
|
|
|
"mypy>=1.15.0",
|
|
|
|
"pre-commit>=4.2.0",
|
|
|
|
"ruff>=0.11.2",
|
2025-03-22 22:31:39 +01:00
|
|
|
"types-requests>=2.32.0.20250306",
|
2025-03-22 16:04:53 +01:00
|
|
|
]
|
2025-03-22 18:05:42 +01:00
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
strict = true
|
|
|
|
disallow_untyped_calls = false
|
|
|
|
disallow_untyped_decorators = false
|