blob: 72ddb668e0d6b11070b2de5f99086c31fdd385a7 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""This package contains modules for creating and updating virtualenvs.
To run:
$ python2 -m venv
See __main__.py for details.
To run the tests:
$ python2 -m unittest discover venv
"""
import os
PACKAGE_DIR = os.path.abspath(__path__[0])
WORKTREE_DIR = os.path.dirname(PACKAGE_DIR)