Initial commit with code

This commit is contained in:
2025-04-16 18:39:03 +02:00
parent fcaa3263cb
commit cf0d4bd18f
24 changed files with 576 additions and 18 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "QuizBot"
authors = [{ name = "Profitroll" }]
readme = "README.md"
requires-python = ">=3.11"
[tool.black]
line-length = 108
target-version = ["py311", "py312", "py313"]
[tool.isort]
profile = "black"
[tool.mypy]
namespace_packages = true
install_types = true
strict = true
show_error_codes = true
[tool.pylint]
disable = ["line-too-long"]
[tool.pylint.main]
extension-pkg-whitelist = ["ujson"]
py-version = 3.11