-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Use Poetry for dependency management #102
Comments
Hello, I noticed you don't assign peeps to issues b/c of high traffic but I'm going to take a crack at this. Will it count towards HacktoberFest? |
Yes @JoHeyJo of course. But the question is I haven't seen anyone using poetry for Dependency Management till now. |
Me either. But it sounds like a fun problem to tackle. |
can i work on this issue? |
Thanks for the comment @Vivek-GuptaXCode but we already have a PR that will be merged for this. |
Okay i appreciate that.is there anything else i can help with? |
You can join in our Discord and we can discuss with the community what all should we be working on. |
Issue Title
Use Poetry for dependency management
Type
Description
Both Pip and Poetry are powerful package managers that can be used to manage dependencies in Python. Pip is the default package manager that is best for small projects where you have a small number of dependencies. Poetry is a modern package/dependency manager that is best suited for large and complex projects.
Expected Behavior
Poetry will be used for package/dependency management to make it simplified and more consistent across different platforms. It supports lock files to ensure consistent installations. Different
poetry
commands will be executed. For example,poetry install
,poetry add package-name
,poetry update
etc.Current Behavior
Currently, Pip is being used as a package manager which installs dependencies from the requirements.txt file.
Steps to Reproduce
pip install poetry
, if poetry is not installed in your virtual environmentpoetry install
, this will install all of your dependenciespoetry update
, if you want to update one/more packagesScreenshots / Code Snippets (if applicable)
Environment
Possible Solution (if you have any in mind)
Additional Information
The text was updated successfully, but these errors were encountered: