-
Notifications
You must be signed in to change notification settings - Fork 164
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
[FEATURE] Add support to PIP/PyPI
- Python
#229
Comments
@guibranco Pull request completed! Check it out here #430 🚀 Note: I automatically create a pull request for an unassigned and open issue in order from oldest to newest once a day at 00:00 UTC, as long as you have remaining automation usage. Should you have any questions or wish to change settings or limits, please feel free to contact [email protected] or invite us to Slack Connect. |
PIP/PyPI
support
@guibranco Pull request completed! Check it out here #476 🚀 Note: I automatically create a pull request for an unassigned and open issue in order from oldest to newest once a day at 00:00 UTC, as long as you have remaining automation usage. Should you have any questions or wish to change settings or limits, please feel free to contact [email protected] or invite us to Slack Connect. |
PIP/PyPI
supportPIP/PyPI
- Python
@guibranco Pull request completed! Check it out here #546 🚀 Note: I automatically create a pull request for an unassigned and open issue in order from oldest to newest once a day at 00:00 UTC, as long as you have remaining automation usage. Should you have any questions or wish to change settings or limits, please feel free to contact [email protected] or invite us to Slack Connect. |
Description
We need to create a Python package for this repository and publish it to PyPi to make it easier for developers to install and use it in their Python projects. Packaging the repository will also enhance the distribution, versioning, and accessibility of the code.
Why We Need This
pip
without needing to clone the repository or manage dependencies manually.Steps to Proceed
Here are the steps to package and publish the repository to PyPi:
Create
setup.py
: This file should include details like package name, version, description, dependencies, and more. Refer to this guide onsetup.py
for instructions.Generate the Distribution Package:
LICENSE
andREADME.md
are included.Test the Package on TestPyPi:
python -m twine upload --repository testpypi dist/*
Publish to PyPi:
python -m twine upload dist/*
Add Badges: After publishing, update the repository's README with a PyPi badge to show the package status and ease future version management.
Tech notes
Additional information
No response
The text was updated successfully, but these errors were encountered: