You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the issues of this repo and believe that this is not a duplicate.
I have searched the FAQ and general documentation and believe that my question is not already covered.
Feature Request
I somehow understand the discussions and reluctance here and here about pip's find-links and why it will not be added, even if this would be very useful for company repositories which don't want to maintain a webserver.
But pip --index-url allows to pass a local html file, like file:///c:/wheelhouse/simple/index.html or c:\wheelhouse\simple\index.html.
Tools like piprepo create a index.html file with links to the local file system.
This might not be as convenient as 'find-links', but it serves the same purpose.
Poetry's source could be able to deal with these these local files (Simple API Repository and Single Page Link Source).
A source could use the attribute path separate the use cases.
Examples for usage:
[[tool.poetry.source]]
name = "foo"
path = "file:///C:/wheelhouse/simple/index.html"
[[tool.poetry.source]]
name = "foo"
url = "C:\wheelhouse\simple\index.html"
[[tool.poetry.source]]
name = "foo"
url = "file:///C:/wheelhouse/simple/index.html"
The text was updated successfully, but these errors were encountered:
This feature is explicitly not about find-links but rather index-url. There is no need to iterate a directory or guess around, you get the explicit links to the packages.
Feature Request
I somehow understand the discussions and reluctance here and here about pip's find-links and why it will not be added, even if this would be very useful for company repositories which don't want to maintain a webserver.
But
pip --index-url
allows to pass a local html file, likefile:///c:/wheelhouse/simple/index.html
orc:\wheelhouse\simple\index.html
.Tools like piprepo create a index.html file with links to the local file system.
This might not be as convenient as 'find-links', but it serves the same purpose.
Poetry's
source
could be able to deal with these these local files (Simple API Repository and Single Page Link Source).A source could use the attribute
path
separate the use cases.Examples for usage:
The text was updated successfully, but these errors were encountered: