dotfiles/templates/py-poetry
Hung e7efe1a965 format with alejandra and other things 2023-06-17 17:46:31 -07:00
..
.envrc forgot .envrc :/ 2023-01-20 10:48:41 -08:00
README.md misc changes for credentials, updates on py-poetry template 2023-02-21 08:40:14 -08:00
default.nix format with alejandra and other things 2023-06-17 17:46:31 -07:00
flake.nix format with alejandra and other things 2023-06-17 17:46:31 -07:00
shell.nix format with alejandra and other things 2023-06-17 17:46:31 -07: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

  • pytest Testing framework for Python
poetry add --group dev pytest
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.