-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoetry.toml
19 lines (16 loc) · 938 Bytes
/
poetry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is the local configuration for the poetry-command.
# Poetry provides the ability to have settings that are specific to a project
# by passing the --local option to the config command.
# Please see https://python-poetry.org/docs/configuration/
#
# The settings below correspond to following commands:
# > poetry config virtualenvs.create true --local
# > poetry config virtualenvs.in-project true --local
[virtualenvs]
# Create a new virtual environment if one doesn’t already exist. Defaults to true.
create = true
# Create the virtualenv inside the project’s root directory. Defaults to None.
# If set to true, the virtualenv wil be created and expected in a folder named .venv within the root directory of the project.
# If not set explicitly (default), poetry will use the virtualenv from the .venv directory when one is available.
# If set to false, poetry will ignore any existing .venv directory
in-project = true