Edit

Description

Upload Package in 2022 ------------------- Pre Setup `pip install twine` Setup ```bash python setup.py sdist twine upload dist/* ``` Update Package ```bash python setup.py sdist twine upload dist/* ``` Source distribute [OLD] ------------------- Setup ``` python setup.py register python setup.py sdist upload ``` Update Package ``` python setup.py sdist upload ``` Wheel [OLD] ----------------- Configuration file (with source code) In setup.py, include these. ``` zip_safe=False, include_package_data=True, ``` Setup Package ``` python setup.py register python setup.py bdist_wheel twine upload --skip-existing dist/* ``` Update Package ``` python setup.py bdist_wheel twine upload --skip-existing dist/* ```

Option