9 lines
339 B
Python
9 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")
|