diff options
author | Yaroslav Halchenko <debian@onerussian.com> | 2013-12-17 09:27:37 -0500 |
---|---|---|
committer | Yaroslav Halchenko <debian@onerussian.com> | 2013-12-17 09:27:37 -0500 |
commit | a606f1f9b98810666dea3682e7def0d322988b3b (patch) | |
tree | 321a0e5af5fe87a7a69ea40505e6cbc1c7309947 /ez_setup.py | |
parent | 9eb9ea1b62b34d83504d0331783a2947985cf0e4 (diff) | |
download | external_python_setuptools-a606f1f9b98810666dea3682e7def0d322988b3b.tar.gz external_python_setuptools-a606f1f9b98810666dea3682e7def0d322988b3b.tar.bz2 external_python_setuptools-a606f1f9b98810666dea3682e7def0d322988b3b.zip |
ENH: use #!/usr/bin/env python for the shebang instead of non-working on POSIX systems plain #!python
Diffstat (limited to 'ez_setup.py')
-rw-r--r-- | ez_setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ez_setup.py b/ez_setup.py index fca25de9..9dd695a1 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -1,4 +1,4 @@ -#!python +#!/usr/bin/env python """Bootstrap setuptools installation To use setuptools in your package's setup.py, include this |