-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (52 loc) · 1.61 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "commanderbot"
description = "A collection of utilities and extensions for discord.py bots."
version = "0.20.0a32"
requires-python = ">=3.13,<3.14"
authors = [
{ name = "Ersatz", email = "[email protected]" },
{ name = "Arcensoth", email = "[email protected]" },
]
license = { file = "LICENSE.txt" }
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["discord", "bot"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
dependencies = [
# Core dependencies.
"discord-py>=2.5.0",
"python-dotenv>=1.0.0",
# These are used for logging.
"colorama>=0.4.0",
"colorlog>=6.9.0",
# These are used for managing SQLite databases.
"aiosqlite>=0.21.0",
"sqlalchemy>=1.4.0,<2.0.0",
# These are used for handling text-based data (json, yaml, etc).
"jsonpath-ng>=1.7.0",
"pyyaml>=6.0.0",
# The rest are for various extensions.
"aiohttp>=3.11.0",
"emoji>=2.0.0",
"allay>=1.3.0",
"mccq>=1.0.0",
"psutil>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/MinecraftCommands/commanderbot-py"
Repository = "https://github.com/MinecraftCommands/commanderbot-py"
Changelog = "https://github.com/MinecraftCommands/commanderbot-py/blob/main/CHANGELOG.md"
[project.scripts]
commanderbot = "commanderbot:__main__"
[tool.uv]
dev-dependencies = ["black>=24.0.0", "isort>=5.13.0"]
[tool.isort]
profile = "black"
[tool.pyright]
typeCheckingMode = "basic"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"