Files
Buffteks-Website/venv/lib/python3.12/site-packages/piptools/locations.py
2025-05-08 21:10:14 -05:00

10 lines
339 B
Python

from __future__ import annotations
from pip._internal.utils.appdirs import user_cache_dir
# The user_cache_dir helper comes straight from pip itself
CACHE_DIR = user_cache_dir("pip-tools")
# The project defaults specific to pip-tools should be written to this filenames
DEFAULT_CONFIG_FILE_NAMES = (".pip-tools.toml", "pyproject.toml")