Name Description Size
__init__.py 396
alias.py Quote an argument for later parsing by shlex.split() 2381
bdist_egg.py setuptools.command.bdist_egg Build .egg distributions 16596
bdist_rpm.py Override the default bdist_rpm behavior to do the following: 1. Run egg_info to ensure the name and version are properly calculated. 2. Always run 'install' using --single-version-externally-managed to disable eggs in RPM distributions. 1353
build.py It seems that you are using `distutils.command.build` to add new subcommands. Using `distutils` directly is considered deprecated, please use `setuptools.command.build`. 6784
build_clib.py Override the default build_clib behaviour to do the following: 1. Implement a rudimentary timestamp-based dependency system so 'compile()' doesn't run every time. 2. Add more keys to the 'build_info' dictionary: * obj_deps - specify dependencies for each object compiled. this should be a dictionary mapping a key with the source filename to a list of dependencies. Use an empty string for global dependencies. * cflags - specify a list of additional flags to pass to the compiler. 4423
build_ext.py Return the file extension for an abi3-compliant Extension() 15821
build_py.py Enhanced 'build_py' command that includes data files with packages The data files are specified via a 'package_data' argument to 'setup()'. See 'setuptools.dist.Distribution' for more details. Also, this version of the 'build_py' command allows you to specify both 'py_modules' and 'packages' in the same setup operation. 15012
develop.py Set up package for development 6744
dist_info.py Create a dist_info directory As defined in the wheel specification 4195
easy_install.py Easy Install ------------ A tool for doing automatic download/extract/build of distutils-based Python packages. For detailed documentation, see the accompanying EasyInstall.txt file, or visit the `EasyInstall home page`__. __ https://setuptools.pypa.io/en/latest/deprecated/easy_install.html 86117
editable_wheel.py Create a wheel that, when installed, will make the source package 'editable' (add it to the interpreter's path, including metadata) per PEP 660. Replaces 'setup.py develop'. .. note:: One of the mechanisms briefly mentioned in PEP 660 to implement editable installs is to create a separated directory inside ``build`` and use a .pth file to point to that directory. In the context of this file such directory is referred as *auxiliary build directory* or ``auxiliary_dir``. 31965
egg_info.py setuptools.command.egg_info Create a distribution's .egg-info directory and contents 27278
install.py Use easy_install to install the package, w/dependencies 5598
install_egg_info.py Install an .egg-info directory for the package 2123
install_lib.py Don't add compiled flags to filenames of non-Python files 3875
install_scripts.py Do normal script install, plus any egg_info wrapper scripts 2714
launcher manifest.xml 628
register.py Formerly used to register packages on PyPI. 468
rotate.py Delete older distributions 2128
saveopts.py Save command-line options to a file 658
sdist.py Find all files under revision control 7007
setopt.py Get the filename of the distutils, local, global, or per-user config `kind` must be one of "local", "global", or "user" 5086
test.py Return a suite of all tests cases contained in the given module If the module is a package, load tests from all the modules in it. If the module has an ``additional_tests`` function, call it and add the return value to the tests. 8102
upload.py Formerly used to upload packages to PyPI. 462
upload_docs.py upload_docs Implements a Distutils 'upload_docs' subcommand (upload documentation to sites other than PyPi such as devpi). 7690