dotfiles/templates/py-poetry
Hung 9c4aa2799b more robust nix templates 2023-01-20 10:44:01 -08:00
..
README.md more robust nix templates 2023-01-20 10:44:01 -08:00
default.nix add py-poetry template 2023-01-19 14:02:39 -08:00
flake.nix add py-poetry template 2023-01-19 14:02:39 -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

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.