Skip to content

Commit 0bb00b3

Browse files
committed
Fix pyproject and update README for uv
1 parent 697d18b commit 0bb00b3

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,20 @@ Viewstate HMAC signatures are also supported. In case there are any remaining by
7373
Development
7474
-----------
7575

76-
Development packages can be installed with ``poetry``. Unit tests, lints and code formatting tasks can be run with:
76+
Development packages can be installed with ``uv``. Unit tests, lints and code formatting tasks can be run with:
7777

7878
.. code-block:: shell
7979
80-
$ poetry install
81-
$ poetry run pytest
82-
$ poetry run ruff
80+
$ uv sync --group dev
81+
$ uv run pytest
82+
$ uv run ruff
8383
8484
For PyPI releases, run build and publish:
8585

8686
.. code-block:: shell
8787
88-
$ poetry build
89-
$ poetry publish
88+
$ uv build
89+
$ uv publish
9090
9191
Note that for uploading a new package version, a valid PyPI auth token should be configured.
9292

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
name = "viewstate"
33
version = "0.7.0"
44
description = "ASP.NET View State Decoder"
5-
authors = ["Yuval Adam <[email protected]>"]
5+
authors = [{name = "Yuval Adam", email = "[email protected]"},]
66
license = "MIT"
77
readme = "README.rst"
8-
homepage = "https://github.com/yuvadm/viewstate"
9-
repository = "https://github.com/yuvadm/viewstate"
108
requires-python = ">=3.8"
119
dependencies = []
1210

0 commit comments

Comments
 (0)