-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.44 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
[tool.poetry]
name = "azazel"
version = "0.2.0"
description = "A versatile Disord Bot designed to enhance server management."
authors = ["Daniel Lima"]
readme = "README.md"
keywords = [
"discord bot",
"chatbot",
"discord",
"python",
"moderation",
"asyncio",
"bot",
"community management",
"automation",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Chat",
"Topic :: Games/Entertainment",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[tool.poetry.group.dev.dependencies]
codespell = "^2.3.0"
pre-commit = "^4.0.1"
pylint = "^3.3.3"
black = "^24.10.0"
isort = "^5.13.2"
[tool.poetry.dependencies]
python = "^3.12"
python-dotenv = "^1.0.1"
discord-py = "^2.4.0"
httpx = "^0.28.1"
[tool.pyright]
exclude = [".venv", "tests", "docs", "build", "dist", ".git", ".github"]
typeCheckingMode = "strict"
reportUnusedImport = "warning"
reportMissingImports = "information"
reportUnusedFunction = "warning"
reportUnusedVariable = "warning"
reportMissingTypeStubs = "information"
reportPrivateImportUsage = "error"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"