This commit is contained in:
2024-11-26 03:34:07 +01:00
parent 3f31c3ea4e
commit e696e161b3
7 changed files with 583 additions and 28 deletions

View File

@ -2,8 +2,9 @@
name = "anewdawn"
version = "0.1.0"
description = "My shit bot"
dependencies = ["discord.py", "openai", "python-dotenv"]
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["discord-py", "openai", "python-dotenv"]
[tool.ruff]
# https://docs.astral.sh/ruff/
@ -47,5 +48,11 @@ pycodestyle.ignore-overlong-task-comments = true
docstring-code-format = true
docstring-code-line-length = 20
[tool.uv.workspace]
members = ["anewdawn"]
[dependency-groups]
dev = ["ruff>=0.8.0"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101", "ARG", "FBT"]