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.
This commit is contained in:
Lucas Doyle 2023-04-30 23:22:54 -07:00
parent 99c016c9b3
commit 7e03fdd766

3
poetry.toml Normal file
View file

@ -0,0 +1,3 @@
[virtualenvs]
in-project = true
prefer-active-python = true