Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 985 Bytes

DISTRIBUTION.md

File metadata and controls

52 lines (32 loc) · 985 Bytes

Generating distribution archives

First, ensure build and twine are installed:

py -m pip install --upgrade build
py -m pip install --upgrade twine

Then, to build:

py -m build

To test for misc. errors:

pip install readme_renderer[md]
py -m build
twine check dist/*

To test uploading:

py -m twine upload --repository testpypi dist/*

To upload to Pypi:

py -m twine upload --repository pypi dist/*

Miscellaneous

For help on distributing extra files on install, see: