From 61d5311614f9a39ffface28839777f687acdc271 Mon Sep 17 00:00:00 2001 From: Daniel Miller Date: Fri, 7 Jun 2024 08:59:21 -0400 Subject: [PATCH] Update PyPI upload instructions --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d88121e..abb4124 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,12 @@ All feature and bug contributions are expected to be covered by tests. ## Uploading to PyPI -Package and upload the generated files. +Package and upload the generated files. This assumes the `django-cte` repository +has been configured in `~/.pypirc`. ``` pip install -r pkg-requires.txt python setup.py sdist bdist_wheel -twine upload dist/* +twine upload --repository=django-cte dist/* ```