Setuptools

Setuptools is a package development process library designed to facilitate packaging Python projects by enhancing the Python standard library distutils (distribution utilities). It includes:

  • Python package and module definitions
  • Distribution package metadata
  • Test hooks
  • Project installation
  • Platform-specific details
  • Python 3 support
Setuptools
An output of easy_install --help
Original author(s)Phillip J. Eby
Developer(s)Jason R. Coombs
Stable release
41.0.1[1] / April 22, 2019 (2019-04-22)
Repository
Written inPython
Operating systemCross-platform
TypePackage manager
LicenseMIT
Websitesetuptools.readthedocs.io , PyPI page

History

In 2013, Distribute, a fork of Setuptools, was merged back into Setuptools 0.7.

Package format

Wheel
Original author(s)Daniel Holth
Stable release
0.33.4 / May 11, 2019 (2019-05-11)
Repositorygithub.com/pypa/wheel
Written inPython
Operating systemCross-platform
TypePackage format
LicenseMIT
Websitepypi.org/project/wheel/

Python Wheels have replaced Eggs.[2]

Python Eggs are a way of bundling additional information with a Python project, that allows the project's dependencies to be checked and satisfied at runtime, as well as allowing projects to provide plugins for other projects.

"Eggs are to Pythons as Jars are to Java..."

Package manager

Python pip has replaced EasyInstall.[3]

EasyInstall is a package manager for Python that provides a standard format for distributing Python programs and libraries (based on the Python Eggs format). EasyInstall is a module bundled with Setuptools.[4] It is analogous to RubyGems for Ruby.

EasyInstall is not a fully fledged package manager. It cannot list local packages nor update them all. Pip and Python Package Manager (PyPM) are Python applications designed to fulfill a similar role as EasyInstall. The Distribute fork was created specifically due to the lack of progress in EasyInstall development.[5]

By default, EasyInstall looks in the Python Package Index (PyPI) for the desired packages and uses the metadata there to download and install the package and its dependencies.

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.