From 7e03fdd766878a723457ef0e6de96d49b0179cb7 Mon Sep 17 00:00:00 2001 From: Lucas Doyle Date: Sun, 30 Apr 2023 23:22:54 -0700 Subject: [PATCH] poetry: add poetry.toml, configure to install in a virtualenv Its cleaner to keep the virtualenv in the project directory, and poetry makes it easy to do that via this config. --- poetry.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 poetry.toml diff --git a/poetry.toml b/poetry.toml new file mode 100644 index 0000000..be97f1e --- /dev/null +++ b/poetry.toml @@ -0,0 +1,3 @@ +[virtualenvs] +in-project = true +prefer-active-python = true \ No newline at end of file