To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

setuptools
Original author(s)Phillip J. Eby
Developer(s)Jason R. Coombs
Stable release
68.2.2[1] / 12 September 2023; 3 months ago (12 September 2023)
Repository
Written inPython
Operating systemCross-platform
TypePackage manager
LicenseMIT
Websitesetuptools.readthedocs.io Edit this at Wikidata, PyPI page

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

History

On 2004-03-17, Phillip J. Eby announced the existence of the project.[2] In 2013, Distribute, a fork of setuptools, was merged back into setuptools 0.7.

Package format

Python wheels have replaced eggs.[4]

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.[5]

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.[6] 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.[7]

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

  1. ^ "Release 68.2.2". 12 September 2023. Retrieved 19 September 2023.
  2. ^ Eby, Phillip J. (7 March 2004). ""setuptools" package preview". Distutils-SIG. Retrieved 17 July 2021.
  3. ^ "Release 0.42.0". 26 November 2023. Retrieved 19 December 2023.
  4. ^ "Wheel: A built-package format for Python".
  5. ^ jaraco: Replace easy_install with pip install. Jan 9, 2017.
  6. ^ http://peak.telecommunity.com/DevCenter/setuptools September 1, 2009
  7. ^ Tarek Ziade. "The strange world of packaging – forking setuptools". Retrieved 10 October 2011.

External links

This page was last edited on 2 January 2024, at 23:01
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.