hgext3rd/__init__.py
author Gregory Szorc <gregory.szorc@gmail.com>
Wed, 23 Oct 2019 18:30:22 -0700
changeset 43560 5a0a4fa055ff
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
packaging: clean up excess packages for Inno This partially reverts e97ffa5511ba. A bunch of package dependencies were getting picked up because I ran pip-compile on Linux and the keyring package has some Linux-only dependencies. I have run pip-compile again - this time from Windows - to undo the addition of these dependencies. I also normalized whitespace to LF. Differential Revision: https://phab.mercurial-scm.org/D7155

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)