Move dev and test deps to dependency-groups

This makes more sense since they're not dependencies of toot and only
used in development/testing.
pull/542/head
Ivan Habunek 2025-07-29 09:19:26 +02:00
rodzic 018d19c2eb
commit 6d80fcb873
1 zmienionych plików z 22 dodań i 21 usunięć

Wyświetl plik

@ -35,27 +35,6 @@ images = [
"term-image>=0.7.2",
]
test = [
"flake8",
"pytest",
"pytest-xdist[psutil]",
"setuptools",
"vermin",
"typing-extensions",
"pillow>=9.5.0",
]
dev = [
"build",
"flake8",
"mypy",
"pyright",
"pyyaml",
"twine",
"types-beautifulsoup4",
"vermin",
]
[project.urls]
"Homepage" = "https://toot.bezdomni.net"
"Source" = "https://github.com/ihabunek/toot/"
@ -76,3 +55,25 @@ packages=[
[tool.pyright]
pythonVersion = "3.8"
[dependency-groups]
test = [
"flake8",
"pytest",
"pytest-xdist[psutil]",
"setuptools",
"vermin",
"typing-extensions",
"pillow>=9.5.0",
]
dev = [
"build",
"flake8",
"mypy",
"pyright",
"pyyaml",
"twine",
"types-beautifulsoup4",
"vermin",
]