From 4f7c5299c2ca6965b42053de9d54933e19795f8f Mon Sep 17 00:00:00 2001 From: w4nn4d13 Date: Mon, 6 Apr 2026 13:45:47 +0530 Subject: [PATCH] Remove PyPI publishing section from README --- README.md | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/README.md b/README.md index 865eedc..87d6358 100644 --- a/README.md +++ b/README.md @@ -60,50 +60,6 @@ pip install -e . --- -## Publishing to PyPI - -To publish ExecuTrace as a Python package to PyPI: - -### Prerequisites -```bash -pip install build twine -``` - -### Build the Package -```bash -python -m build -``` - -This creates: -- `dist/exectrace-1.0.0.tar.gz` (source distribution) -- `dist/exectrace-1.0.0-py3-none-any.whl` (wheel) - -### Upload to PyPI -```bash -# Upload to official PyPI (requires PyPI account) -twine upload dist/* - -# Or test upload first -twine upload -r testpypi dist/* -``` - -### PyPI Account Setup -1. Create account at https://pypi.org/account/register/ -2. Generate API token at https://pypi.org/manage/account/token/ -3. Create `~/.pypirc`: -``` -[distutils] -index-servers = - pypi - -[pypi] -repository = https://upload.pypi.org/legacy/ -username = __token__ -password = pypi_YOUR_TOKEN_HERE -``` - ---- - ## Quick Usage ```bash