diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-01 21:45:18 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-01 21:45:18 +0200 |
| commit | 0bb00b3f0f8eab9c68311d23f734f6769a0ead1b (patch) | |
| tree | a872ef2b07a9d64b06819a49bfb836ffa7d6e7cc | |
| parent | 697d18b102585d62b4296064a90665783cda53b8 (diff) | |
| -rw-r--r-- | README.rst | 12 | ||||
| -rw-r--r-- | pyproject.toml | 4 |
2 files changed, 7 insertions, 9 deletions
@@ -73,20 +73,20 @@ Viewstate HMAC signatures are also supported. In case there are any remaining by Development ----------- -Development packages can be installed with ``poetry``. Unit tests, lints and code formatting tasks can be run with: +Development packages can be installed with ``uv``. Unit tests, lints and code formatting tasks can be run with: .. code-block:: shell - $ poetry install - $ poetry run pytest - $ poetry run ruff + $ uv sync --group dev + $ uv run pytest + $ uv run ruff For PyPI releases, run build and publish: .. code-block:: shell - $ poetry build - $ poetry publish + $ uv build + $ uv publish Note that for uploading a new package version, a valid PyPI auth token should be configured. diff --git a/pyproject.toml b/pyproject.toml index e70c6c7..60b646a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,11 +2,9 @@ name = "viewstate" version = "0.7.0" description = "ASP.NET View State Decoder" -authors = ["Yuval Adam <_@yuv.al>"] +authors = [{name = "Yuval Adam", email = "_@yuv.al"},] license = "MIT" readme = "README.rst" -homepage = "https://github.com/yuvadm/viewstate" -repository = "https://github.com/yuvadm/viewstate" requires-python = ">=3.8" dependencies = [] |
