pip install package-name
package-name
Available pipenv run
scripts :
install
- installs the packageapp
- runs the applicationtest
- tests the application with pytestbuild
- build the app artifactsclean
- clean the artifacts created with thebuild
scriptdeploy-test
- deploy to test.pypideploy
- deploy to pypi
In order to properly run the deploy scripts, you should :
- have twine installed.
- have a
~/.pypirc
file filled according to the template below
[distutils]
index-servers=
pypi
testpypi
[pypi]
username: your_username
password: your_password
[testpypi]
repository: https://test.pypi.org/legacy/
username: your_username
password: your_password
Note: pypi.org
and test.pypi.org
uses two distinct databases for user accounts. You need to create an account for both domains