diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-26 10:35:02 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-26 10:35:02 -0400 |
| commit | dcc71f773576c19a3658735879893515b056ece5 (patch) | |
| tree | 2ebc5e39593fb475a7fc957f9965339b5b9ae60a /_distutils_hack/install.py | |
| parent | 1e53a2c14e7e0f788c9df2a542ac10f6b2f511d7 (diff) | |
| download | python-setuptools-git-dcc71f773576c19a3658735879893515b056ece5.tar.gz | |
Rename _distutils_importer to _distutils_hack, as it supplies more than just an importer.
Diffstat (limited to '_distutils_hack/install.py')
| -rw-r--r-- | _distutils_hack/install.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_distutils_hack/install.py b/_distutils_hack/install.py new file mode 100644 index 00000000..73f13b29 --- /dev/null +++ b/_distutils_hack/install.py @@ -0,0 +1,5 @@ +from . import enabled, add_shim + + +if enabled(): + add_shim() |
