comparison planemo/lib/python3.7/site-packages/setuptools/command/__init__.py @ 1:56ad4e20f292 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:32:28 -0400
parents
children
comparison
equal deleted inserted replaced
0:d30785e31577 1:56ad4e20f292
1 __all__ = [
2 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop',
3 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts',
4 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts',
5 'register', 'bdist_wininst', 'upload_docs', 'upload', 'build_clib',
6 'dist_info',
7 ]
8
9 from distutils.command.bdist import bdist
10 import sys
11
12 from setuptools.command import install_scripts
13
14 if 'egg' not in bdist.format_commands:
15 bdist.format_command['egg'] = ('bdist_egg', "Python .egg file")
16 bdist.format_commands.append('egg')
17
18 del bdist, sys