build: add pytest as optional

This commit is contained in:
2025-12-23 04:46:07 +01:00
parent 1c4a256641
commit e518f96e9d

View File

@@ -6,5 +6,12 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = ["atproto>=0.0.65", "pyyaml>=6.0"]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
skywipe = "skywipe.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]