From 9bdc111872ed5605b1e526feb340aafeec12ed9c Mon Sep 17 00:00:00 2001 From: abcprintf Date: Mon, 17 Mar 2025 14:26:10 +0700 Subject: [PATCH] docs: update README to include build instructions for package installation --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 8c97c7b..08cb097 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,20 @@ python unlock_pdf.py locked.pdf unlocked.pdf password tox ``` +### Build +```bash +python setup.py sdist bdist_wheel + +// check the build +twine check dist/* + +// install the package +pip install dist/eservice_unlock_pdf-0.1.0-py3-none-any.whl +``` + ### uploade to pypi ```bash +pip install twine + twine upload dist/* ``` \ No newline at end of file