Hacker News new | ask | show | jobs
by kndjckt 2416 days ago
I switched from pipenv to poetry over 1 year ago. I love it!

The main reasoning was so that I could easily build and publish packages to a private repository and then easily import packages from both pypi and the private repository.

Happy to answer more questions.

1 comments

I'd like to use poetry however ran into https://github.com/sdispater/poetry/issues/1554

We have a custom pypi server and need all requests to go through it, however haven't figured a way to make poetry always use our index server for all modules instead of pypi.org

Add a second source and it will prioritise that over pypi.

  [[tool.poetry.source]]
  name = "my-repo-name"
  url = "https://myrepo.url/"