Home
Setuptools / Wheel/ Twine Build Tool¶
Package Source Code
- pip3 install setuptools ; pip3 install wheel
- python3 setup.py sdist bdist_wheel
Upload Package
- pip3 install twine
- twine upload dist/*
Poetry Build Tool¶
- Activating the virtual environment:poetry shell
- add deps:poetry add xxx (poetry add
cat requirements.txt
) or poetry install - poetry build | pip3 install dist/padb-1.2.0-py3-none-any.whl --force
- 开发调试: poetry build | poetry run padb temple-code -c
- 发布:poetry build | poetry publish