# py-regex-replace ## Installation ```shell make install ``` ## Uploading to TestPyPI More detailed instructions can be found at [https://packaging.python.org/tutorials/packaging-projects/](https://packaging.python.org/tutorials/packaging-projects/) 1) Set up a _venv_ 2) Increase/Adjust `[metadata][version]` in [setup.cfg](setup.cfg) 3) Install the `build` and `twine` modules to your _venv_. 4) Next generate a [distribution archive](https://packaging.python.org/tutorials/packaging-projects/#generating-distribution-archives): ```shell python3 -m build ``` 5) Upload the distribution packages with twine. For the username, use `__token__`. For the password, use a [test.pypi.org API token](https://test.pypi.org/manage/account/#api-tokens): ```shell python3 -m twine upload --repository testpypi dist/* ``` 6) Congratulations! You can view the uploaded module under: * [https://test.pypi.org/project/py-regex-replace/](https://test.pypi.org/project/py-regex-replace/)