aboutsummaryrefslogblamecommitdiffstats
path: root/env/lib/python3.10/site-packages/setuptools/_path.py
blob: ede9cb002791abf64fe13c146d12ff0ad0505c4e (plain) (tree)
1
2
3
4
5
6
7






                                                           
import os


def ensure_directory(path):
    """Ensure that the parent directory of `path` exists"""
    dirname = os.path.dirname(path)
    os.makedirs(dirname, exist_ok=True)