dotfiles/.config/pip/pip.conf

32 lines
741 B
INI
Raw Permalink Normal View History

2019-05-28 17:44:30 +02:00
[global]
# Don't periodically check PyPI to determine whether
# a new version of pip is available for download.
disable-pip-version-check = true
[download]
# Include pre-release and development versions.
pre = true
# Specify type of progress to be displayed.
2022-09-05 09:53:48 +02:00
progress-bar = on
2019-05-28 17:44:30 +02:00
[freeze]
# Exclude editable package from output.
exclude-editable = true
# If in a virtualenv that has global access,
# do not output globally-installed packages.
local = true
[install]
# Compile Python source files to bytecode.
compile = true
# Specify type of progress to be displayed.
2022-09-05 09:53:48 +02:00
progress-bar = on
2023-11-15 18:27:45 +01:00
# Use PEP 517 for building source distributions.
use-pep517 = on
2019-05-28 17:44:30 +02:00
[wheel]
# Specify type of progress to be displayed.
2022-09-05 09:53:48 +02:00
progress-bar = on
2019-05-28 17:44:30 +02:00
2023-11-15 18:27:45 +01:00
# vim:ft=confini: