aboutsummaryrefslogtreecommitdiff
path: root/setuptools/_path.py
blob: ede9cb002791abf64fe13c146d12ff0ad0505c4e (plain)
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)