Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 328 Bytes

python.md

File metadata and controls

21 lines (15 loc) · 328 Bytes

Python

pip & PyPI

从git安装

pip install git+https://github.com/user/repo.git@branch#subdirectory=dir

最基本发布到PyPI流程

# environment with twine installed
python setup.py sdist bdist_wheel
# to TestPyPI
twine upload --repository testpypi dist/*
# to official PyPI
twine upload dist/*