diff options
| author | Donald Stufft <donald@stufft.io> | 2014-11-19 12:39:18 -0500 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2014-11-19 12:39:18 -0500 |
| commit | 09ecca34b3eeb76d4f231040338e1c68bf770702 (patch) | |
| tree | 54be2e06b0bf378a4a2daa616790fa9bf949bceb /bootstrap.py | |
| parent | 5e62aa3b59398252faef0d638a0f087d6c682800 (diff) | |
| parent | affa001a6767efee24b4d6bc1a2f04eb7aeea65b (diff) | |
| download | python-setuptools-git-09ecca34b3eeb76d4f231040338e1c68bf770702.tar.gz | |
Merge branch 'master' into use-packaging
Conflicts:
.hgtags
CHANGES.txt
ez_setup.py
setuptools.egg-info/requires.txt
setuptools/version.py
Diffstat (limited to 'bootstrap.py')
| -rw-r--r-- | bootstrap.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/bootstrap.py b/bootstrap.py new file mode 100644 index 00000000..cbc1ca9d --- /dev/null +++ b/bootstrap.py @@ -0,0 +1,51 @@ +""" +If setuptools is not already installed in the environment, it's not possible +to invoke setuptools' own commands. This routine will bootstrap this local +environment by creating a minimal egg-info directory and then invoking the +egg-info command to flesh out the egg-info directory. +""" + +import os +import sys +import textwrap +import subprocess + + +minimal_egg_info = textwrap.dedent(""" + [distutils.commands] + egg_info = setuptools.command.egg_info:egg_info + + [distutils.setup_keywords] + include_package_data = setuptools.dist:assert_bool + install_requires = setuptools.dist:check_requirements + extras_require = setuptools.dist:check_extras + entry_points = setuptools.dist:check_entry_points + + [egg_info.writers] + dependency_links.txt = setuptools.command.egg_info:overwrite_arg + entry_points.txt = setuptools.command.egg_info:write_entries + requires.txt = setuptools.command.egg_info:write_requirements + """) + +def ensure_egg_info(): + if not os.path.exists('setuptools.egg-info'): + build_egg_info() + + +def build_egg_info(): + """ + Build a minimal egg-info, enough to invoke egg_info + """ + + os.mkdir('setuptools.egg-info') + with open('setuptools.egg-info/entry_points.txt', 'w') as ep: + ep.write(minimal_egg_info) + + +def run_egg_info(): + subprocess.check_call([sys.executable, 'setup.py', 'egg_info']) + + +if __name__ == '__main__': + ensure_egg_info() + run_egg_info() |
