Deploying Packages:

How to troubleshoot PyPi issues

AuthorFullName__c
Patrick Russell
articleNumber
000004152
ft:sourceType
Salesforce
FirstPublishedDate
2018-11-13T23:48:41Z
lastModifiedDate
2024-03-10T07:46:26Z
VersionNumber
7
When you've configured a given package’s .pypirc to point to Artifactory, you can then run the following command to initiate its deployment:
python setup.py sdist upload -r local
---or---
python setup.py bdist_wheel upload -r local

This performs a POST action, which submits the package to Artifactory:
20180524094126|10499|REQUEST|127.0.0.1|admin|POST|/api/pypi/pypi|HTTP/1.1|200|3357

Depending on whether you specified a Python Wheel or a simple package upload, you will see the deployed file in your PyPI local repository:

User-added image