diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-01 21:27:15 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-01 21:27:15 +0200 |
| commit | c602f007e51adc98d3c81078a1acb52b9e9ce5c8 (patch) | |
| tree | e2ec732c84fe01f74074159aee803b870bbfe0fd /pyproject.toml | |
| parent | 679482b79f4a77fc1f17389c3d7b26356e3d635f (diff) | |
Convert pyproject.toml to uv base
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3cc5788..41a32d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,14 @@ -[tool.poetry] +[project] name = "viewstate" -version = "0.6.0" +version = "0.7.0" description = "ASP.NET View State Decoder" authors = ["Yuval Adam <_@yuv.al>"] license = "MIT" readme = "README.rst" +requires-python = ">=3.8" +dependencies = [] -[tool.poetry.dependencies] -python = "^3.8" - -[tool.poetry.group.dev.dependencies] -pytest = "^8.2.1" -ruff = "^0.4.4" - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" +[dependency-groups] +dev = [ + "pytest>=8.3.5", +] |
