dotfiles/.config/pip/pip.conf

34 lines
805 B
INI
Raw 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.
progress-bar = pretty
[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
# Include pre-release and development versions.
pre = true
# Specify type of progress to be displayed.
progress-bar = pretty
[wheel]
# Include pre-release and development versions.
pre = true
# Specify type of progress to be displayed.
progress-bar = pretty
2019-09-02 03:42:42 +02:00
# vim:ft=dosini: