feat: switch to uv
Some checks failed
Enforce Conventional Commit PR Title / Validate PR Title (pull_request) Successful in 3s
CI / ci (pull_request) Failing after 17s

This commit is contained in:
2025-01-03 16:41:14 +00:00
parent 070a77c665
commit 2a5f074002
6 changed files with 701 additions and 27 deletions

View File

@ -1,29 +1,34 @@
[tool.poetry]
[project]
name = "webexmemebot"
version = "0.0.0" # Version is tracked by GitHub Releases
version = "0.0.0"
description = "Webex-based meme generation bot using memegen.link."
authors = ["luketainton"]
readme = "README.md"
package-mode = false
authors = [
{name = "luketainton"},
]
requires-python = ">=3.11.2"
dependencies = [
"webex-bot<1.0.0,>=0.5.2",
"pillow<12.0.0,>=11.0.0",
"astroid<=3.3.8",
]
[tool.poetry.dependencies]
python = "^3.11.2"
webex-bot = "^0.5.2"
pillow = "^11.0.0"
astroid = "<=3.3.8"
[tool.uv]
dev-dependencies = [
"black<25.0.0,>=24.10.0",
"coverage<8.0.0,>=7.6.10",
"isort<6.0.0,>=5.13.2",
"pylint<4.0.0,>=3.3.2",
"pylint-exit<2.0.0,>=1.2.0",
"pytest<9.0.0,>=8.3.4",
"pre-commit<5.0.0,>=4.0.1",
]
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
coverage = "^7.6.10"
isort = "^5.13.2"
pylint = "^3.3.2"
pylint-exit = "^1.2.0"
pytest = "^8.3.4"
pre-commit = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
[project.scripts]
meme = "app.main:main"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"