aboutsummaryrefslogtreecommitdiffstats
path: root/easy_install.py
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2019-11-16 23:30:10 +0100
committerBenoit Pierre <benoit.pierre@gmail.com>2019-11-16 23:30:10 +0100
commita1e956b20f11f2d02f5a9855bda37660080184c9 (patch)
tree1f83221e605be161feff5bbea1e1c2fefef33011 /easy_install.py
parent68dbb703705cdd64e25261a6fcc1c0cc96bcf431 (diff)
downloadexternal_python_setuptools-a1e956b20f11f2d02f5a9855bda37660080184c9.tar.gz
external_python_setuptools-a1e956b20f11f2d02f5a9855bda37660080184c9.tar.bz2
external_python_setuptools-a1e956b20f11f2d02f5a9855bda37660080184c9.zip
Revert "drop easy_install script and associated documentation"
This reverts commit 6e1838a9fb5feb000ba9b6a3c37c8b39d7e872b3.
Diffstat (limited to 'easy_install.py')
-rw-r--r--easy_install.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/easy_install.py b/easy_install.py
new file mode 100644
index 00000000..d87e9840
--- /dev/null
+++ b/easy_install.py
@@ -0,0 +1,5 @@
+"""Run the EasyInstall command"""
+
+if __name__ == '__main__':
+ from setuptools.command.easy_install import main
+ main()