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 | |
| parent | 679482b79f4a77fc1f17389c3d7b26356e3d635f (diff) | |
Convert pyproject.toml to uv base
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | pyproject.toml | 20 |
2 files changed, 10 insertions, 13 deletions
@@ -1,7 +1,8 @@ __pycache__ *.pyc .pytest_cache +.python-version build/ dist/ *.egg-info/ -poetry.lock +uv.lock 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", +] |
