Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 385 Bytes

publishing.md

File metadata and controls

11 lines (10 loc) · 385 Bytes

To publish the project to the test environment of PyPI use:

(venv)> python setup.py sdist
(venv)> python setup.py bdist_wheel --universal
(venv)> twine upload --config-file .\venv\pip.ini -r testpypi .\dist\* 

For publishing not into the piptest environment, replace the last line with:

(venv)> twine upload --config-file .\venv\pip.ini .\dist\*