Move from pipenv -> uv, bump Python to 3.13

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2025-06-30 10:03:28 -07:00
parent f733e9f3b8
commit 20e287540e
6 changed files with 621 additions and 824 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "omnibot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp[speedups]>=3.12.13",
"async-irc>=0.2.0",
"async-timeout>=5.0.1",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"jedi>=0.19.2",
"mypy>=1.16.1",
"ruff>=0.12.1",
]