-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deployment to pypi? #2805
Comments
Found the way to do things here: https://realpython.com/pipenv-guide/#yes-i-need-to-distribute-my-code-as-a-package (That makes me sad that I have to use Would be great if there was an opinionated |
I usually does pipenv run python setup.py sdist bdist bdist_wheel
pipenv run twine upload dist/* |
@gsemet the whole point is that I want to avoid having a |
I feel this should be reopened as poetry has a mechanism to deploy and seems to be the only real missing feature of pipenv in my eyes |
Pipenv and Pipfile are never to define the dependencies of a library, it can't play the role of |
Sorry for the possibly stupid question, but is there a supported workflow in pipenv for deploying a package to a pypi repository? I'm surprised I couldn't find any documentation on this but perhaps I'm missing something. This is a typical workflow in other package managers (maven, yarn, etc...). What's the correct way to do this?
The text was updated successfully, but these errors were encountered: