diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-20 12:31:24 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-20 12:32:48 +0200 |
| commit | 679482b79f4a77fc1f17389c3d7b26356e3d635f (patch) | |
| tree | c34d3fd627bd436b660015364073782e8e4aa5d2 | |
| parent | 8adcf99a246651e137cdd948b701eb1fd6ddf515 (diff) | |
Cleanup README
| -rw-r--r-- | README.rst | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -1,7 +1,7 @@ ASP.NET View State Decoder ========================== -A small Python 3.5+ library for decoding ASP.NET viewstate. +A small Python library for decoding ASP.NET viewstate. Viewstate is a method used in the ASP.NET framework to persist changes to a web form across postbacks. It is usually saved on a hidden form field: @@ -73,23 +73,22 @@ Viewstate HMAC signatures are also supported. In case there are any remaining by Development ----------- -Development packages can be installed with ``pipenv``. Unit tests and code formatting tasks can be run with the builtin scripts: +Development packages can be installed with ``poetry``. Unit tests, lints and code formatting tasks can be run with: .. code-block:: shell - $ pipenv sync -d - $ pipenv run test - $ pipenv run format + $ poetry install + $ poetry run pytest + $ poetry run ruff -For PyPI releases, follow the build, check and upload scripts. +For PyPI releases, run build and publish: .. code-block:: shell - $ pipenv run build - $ pipenv run check - $ pipenv run upload + $ poetry build + $ poetry publish -Note that for uploading a new package version, a valid PyPI auth token should be defined in ``~/.pypirc``. +Note that for uploading a new package version, a valid PyPI auth token should be configured. References ---------- |
