-
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
Add PIP/PyPI support with gitauto model #430
Closed
gitauto-ai
wants to merge
10
commits into
main
from
gitauto/issue-#229-146e322f-c041-4556-a1c9-bba0a7a08291
Closed
Add PIP/PyPI support with gitauto model #430
gitauto-ai
wants to merge
10
commits into
main
from
gitauto/issue-#229-146e322f-c041-4556-a1c9-bba0a7a08291
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format This commit fixes the style issues introduced in 6c75e92 according to the output from ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format. Details: #430
github-actions
bot
added
the
size/M
Denotes a PR that changes 30-99 lines, ignoring generated files.
label
Jul 22, 2024
guibranco
changed the title
Fix [FEATURE] Add PIP/PyPI support with gitauto model
Add PIP/PyPI support with gitauto model
Aug 15, 2024
gstraccini
bot
added
dependencies
Pull requests that update a dependency file
📝 documentation
Tasks related to writing or updating documentation
enhancement
A enhancement to the project
github-actions
GitHub Actions for automation and CI/CD
good first issue
A issue for someone self assign and help me =D
hacktoberfest
Participation in the Hacktoberfest event
help wanted
Feel free to take this issue for you and help me!
packages
Publishing packages
python
Pyhton
labels
Aug 19, 2024
This pull request is ready ✅ for merge/squash. |
This pull request is ready ✅ for merge/squash. |
Quality Gate failedFailed conditions |
guibranco
deleted the
gitauto/issue-#229-146e322f-c041-4556-a1c9-bba0a7a08291
branch
September 13, 2024 09:07
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
🤖 bot
Automated processes or integrations
dependencies
Pull requests that update a dependency file
📝 documentation
Tasks related to writing or updating documentation
enhancement
A enhancement to the project
gitauto
GitAuto label to trigger the app in a issue.
good first issue
A issue for someone self assign and help me =D
hacktoberfest
Participation in the Hacktoberfest event
help wanted
Feel free to take this issue for you and help me!
github-actions
GitHub Actions for automation and CI/CD
packages
Publishing packages
python
Pyhton
size/M
Denotes a PR that changes 30-99 lines, ignoring generated files.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Original issue: #229
What is the feature
This feature adds support for publishing the project to PIP/PyPI, allowing users to easily install and manage the package using Python's package manager.
Why we need the feature
Publishing the project to PIP/PyPI will significantly increase its accessibility and ease of use for Python developers. It will allow users to install the package with a simple
pip install
command, manage dependencies more effectively, and integrate the package into their existing Python projects seamlessly.How to implement and why
Create
setup.py
:Update
README.md
:Create a
.pypirc
file:Build the package:
setuptools
to build the package.Upload the package to PyPI:
twine
to upload the package.twine upload dist/*
Automate the process:
.github/workflows/publish.yml
):By following these steps, we can ensure that the project is properly packaged and published to PIP/PyPI, making it easily accessible to the Python community.
Test these changes locally