dotfiles/templates/py-poetry
Hung 150534c512 add bootstrapping profile for py-poetry 2023-01-20 14:58:02 -08:00
..
.envrc forgot .envrc :/ 2023-01-20 10:48:41 -08:00
README.md bonehead on nix flake's fetch git convention 2023-01-20 10:59:07 -08:00
default.nix add py-poetry template 2023-01-19 14:02:39 -08:00
flake.nix add bootstrapping profile for py-poetry 2023-01-20 14:58:02 -08:00
shell.nix add py-poetry template 2023-01-19 14:02:39 -08:00

README.md

A Python project that uses Poetry for packaging and package management

built with nix

nix flake new --template git+https://git.pegasust.com/pegasust/dotfiles.git#py-poetry ./

Bootstrapping the project

  • This repo uses poetry, a repo-manager with an intuitive CLI
poetry init

Libraries worth integrating

poetry add --group dev syrupy
poetry add --group dev hypothesis
  • requests An intuitive way to perform network requests in Python
poetry add requests
poetry add plotly
  • toolz Functional programming in Python
    • Beware, you might lose typesafety doing this, but this is what the REPL is invented to mitigate.