-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Existing project, Poetry init, check and install requirements #983
Comments
Α requirements file can contain all sort of stuff that cannot be parsed by something as simple as what you propose: https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format For the record, there was a PR for importing a pipenv project but sdispater chose to reject it: #579 |
Another issue link: #663 |
This one should be closed in favor of the existing tickets |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closing this issue automatically because it has not had any activity since it has been marked as stale. If you think it is still relevant and should be addressed, feel free to open a new one. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Feature Request
How about adding a check for existing requirements.txt to Poetry init so that if you init on an existing project it would auto install and add existing packages?
Basically integrate something like:$(cat requirements.txt); do poetry add "$ {item}"; done
FOR /F "usebackq delims==" %i IN (
cat requirements.txt
) DO poetry add %ifor Windows, or
$ for item in
for Bash
The text was updated successfully, but these errors were encountered: