Initialize botbotbot-py project with basic structure and configuration

This commit is contained in:
Edgar P. Burkhart 2025-03-22 16:04:53 +01:00
parent 5c77a47383
commit 39da454b2a
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
7 changed files with 238 additions and 12 deletions

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[project]
name = "botbotbot-py"
version = "0.1.0"
description = "Discord Chaos Bot"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"isort>=6.0.1",
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"ruff>=0.11.2",
]