Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Situation

I’m trying to port an open-source library to Python 3. (SymPy, if anyone is wondering.)

So, I need to run 2to3 automatically when building for Python 3. To do that, I need to use distribute. Therefore, I need to port the current system, which (according to the doctest) is distutils.


The Problem

Unfortunately, I’m not sure what’s the difference between these modules—distutils, distribute, setuptools. The documentation is sketchy as best, as they all seem to be a fork of one another, intended to be compatible in most circumstances (but actually, not all)…and so on, and so forth.


The Question

Could someone explain the differences? What am I supposed to use? What is the most modern solution? (As an aside, I’d also appreciate some guide on porting to Distribute, but that’s a tad beyond the scope of the question…)

share|improve this question
6  
How confusing? I am come to python from a Java/C++ background. In those situations, distribution is very straight forward. With python, I a, completely confused regarding all these distribution systems. – Raffi Khatchadourian Nov 27 '11 at 6:33
12  
I agree, Python packaging/installation has way too many alternatives with no clear guidance from the community. – Sabuncu May 2 '12 at 18:19
1  
I just wanted to link this related info on pip not supporting binary distributions lucumr.pocoo.org/2012/6/22/hate-hate-hate-everywhere – pixelbeat Jun 29 '12 at 15:54

5 Answers

up vote 150 down vote accepted

I’m a distutils maintainer and distutils2/packaging contributor. I did a talk about Python packaging at ConFoo 2011 and these days I’m writing an extended version of it. It’s not published yet, so here are excerpts that should help define things.

  • Distutils is the standard tool used for packaging. It works rather well for simple needs, but is limited and not trivial to extend.

  • Setuptools is a project born from the desire to fill missing distutils functionality and explore new directions. In some subcommunities, it’s a de facto standard. It uses monkey-patching and magic that is frowned upon by Python core developers.

  • Distribute is a fork of Setuptools that was started by developers feeling that its development pace was too slow and that it was not possible to evolve it. Its development was considerably slowed when distutils2 was started by the same group.

  • Distutils2 is a new distutils library, started as a fork of the distutils codebase, with good ideas taken from setup tools (of which some were thoroughly discussed in PEPs), and a basic installer inspired by pip. The actual name you use to import Distutils2 is packaging in the Python 3.3+ standard library, or distutils2 in 2.4+ and 3.1–3.2. (A backport will be available soon.) Distutils2 did not make the Python 3.3 release, and it was put on hold.

More info:

I hope to finish my guide soon, it will contain more info about each library’s strong and weak points and a transition guide.

share|improve this answer
1  
Thanks, this is the perfect answer! I'd appreciate it if you could add a link to your guide once it's published. – VPeric Jun 30 '11 at 9:00
3  
The picture in this blog post is a good summary of the future of distutils2 of distribute: tarekziade.wordpress.com/2010/03/03/… distribute will reach end of life in a few years, people can start using distutils2 in parallel to distutils or setuptools/distribute right now (the guide I’m finishing will have a HOWTO on that), and distutils2 is intended to replace distutils/setuptools/distribute for all intents and purpose. – Éric Araujo Jul 29 '11 at 14:09
2  
@ÉricAraujo Sorry to hear about the delay. I really hope it’s ready in time for 3.4! I love Python, but the packaging has always made me bang my head against the wall. (In other news, how is your guide coming? If it’s finished, could you link it in your answer above?) – Zearin Oct 14 '12 at 22:03
9  
There is a useful updated version on this answer below. – Alexis Huet Feb 8 at 13:41
3  
@AlexisHuet This kind of comment would be better if it would contain the link to the comment below (which you can get from the share button). – erikb85 Mar 26 at 15:26
show 5 more comments

As of June 2013, all of the other answers to this question are two years out-of-date. When you come across advice on Python packaging issues, remember to look at the date of publication, and don't trust out-of-date information.

Summary of tools:

Here's a summary of the Python packaging landscape in June 2013:

  • Distutils is still the standard tool for packaging in Python. It is included in the standard library (Python 2 and Python 3.0 to 3.3). It is useful for simple Python distributions, but lacks features. It introduces the distutils Python package that can be imported in your setup.py script.

  • Setuptools was developed to overcome Distutils' limitations, and is not included in the standard library. It introduced a command-line utility called easy_install. It also introduced the setuptools Python package that can be imported in your setup.py script, and the pkg_resources Python package that can be imported in your code to locate data files installed with a distribution. One of its gotchas is that it monkey-patches the distutils Python package. It should work well with pip. The latest version was released in June 2013.

  • Distribute was a fork of Setuptools. It shared the same namespace, so if you have Distribute installed, import setuptools actually imports the package distributed with Distribute. It also includes an easy_install command-line tool, but it was designed to work well with Pip, which replaces it. It is also designed to work well with Python 2 or 3 or both. Distribute was merged back into Setuptools 0.7. You only need to use it for Python3 and Virtualenv, as Virtualenv hasn't been updated to recognise Setuptools 0.7 yet (bug report).

  • Distutils2 was an attempt to take the best of Distutils, Setuptools and Distribute and become the standard tool included in Python's standard library. The idea was that Distutils2 would be distributed for old Python versions, and that Distutils2 would be renamed to packaging for Python 3.3, which would include it in its standard library. These plans did not go as intended, however, and currently, Distutils2 is an abandoned project. The latest release was in March 2012, and even the basic documentation on its Pypi home page is wrong.

  • Distlib is a tool that aims to implement a subset of the previous tools' functionality, but only functionality that is very well-defined in accepted PEPs. It should hopefully be included eventually in the Python standard library. It is still being developed and is not recommended for end-users yet.

  • Bento is a packaging solution designed to replace Distutils, Setuptools, Distribute and Distutils2, written from the ground up. Its primary developer is also a core developer of numpy/scipy, so he's familiar with non-simple use-cases for packaging systems. Its first commit was in October 2009, and the latest commit as of writing was in March 2013. It's in active development but it is not mature yet, and it is not as widely known as Distribute yet.

Recommendation:

So in conclusion, out of all these options, I would recommend Distribute, unless your requirements are very basic and you only need Distutils. Distribute works very well with Virtualenv and Pip, tools that I highly recommend.

I would have recommended Setuptools instead, were it not for the fact that Virtualenv doesn't support Setuptools 0.7 with Python 3 yet. Once it does, I'll update this answer.


References:

Have a look at the advice of Nick Coghlan, the current packaging "BDFL-delegate". His essay on the state of Python packaging in March 2013 is well worth a read, even if it is a bit out-of-date.

share|improve this answer
1  
@makeramen: See this thread on the mailing list. – Flimm Mar 4 at 21:43
1  
+1 for the updated information! – Tim Tisdall Mar 8 at 16:36
2  
1  
Wow. I love Python, but the state of Python packaging is nothing less than hellish! ☹ At any rate, better to know the ugly truth and make an informed decision. Thanks for the excellent answer, @Flimm. – Zearin May 7 at 14:26
1  
And is not looking any better: 'Distribute' is a now deprecated fork of the 'Setuptools' project. @ PyPI Distribute page. – KurzedMetal May 29 at 17:26
show 4 more comments

I came across this explanation about the current state of packaging. It seems that everything is moving towards distutils2, so I am not sure there is a standard way of setting things up currently. I would use distutils2 directly, but it will only be part of the standard with python 3.3.

share|improve this answer
3  
I think (though I can't find source for this info) that distutils2 is going to be renamed as "packaging" when it's added to python 3.3; and the "distutils2" package is going to remain available as a backport for py2.6-3.1. With all of that in flux, for myself I'm using distribute, though with the expectation that the distutils2-based future will arrive within a year. – Eli Collins Jun 14 '11 at 15:47

Yep, you got it. :-o I think at this time the preferred package is Distribute, which is a fork of setuptools, which are an extension of distutils (the original packaging system). Setuptools was not being maintained so is was forked and renamed, however when installed it uses the package name of setuptools! I think most Python developers now use Distribute, and I can say for sure that I do.

share|improve this answer
For the record, I accepted this answer because it told me the situation now (And the is fork of is extension of relation that the picture in the other answer just doesn't mention). And somewhere along the road I also learned that the documentation itself isn't usually sure what it's trying to say. – VPeric Jun 23 '11 at 12:26
2  
@VPeric, Indeed, the documentation reflects the fact that this aspect of python is in a state of flux/ a mess. – juanchopanza Jun 23 '11 at 14:19

I realize that I have replied to your secondary question without addressing unquestioned assumptions in your original problem:

I'm trying to port an open-source library (SymPy, if anyone is wondering) to Python 3. To do this, I need to run 2to3 automatically when building for Python 3.

You may, not need. Other strategies are described at http://docs.python.org/dev/howto/pyporting

To do that, I need to use distribute,

You may :) distutils supports build-time 2to3 conversion for code (not docstrings), in a different manner that distribute’s: http://docs.python.org/dev/howto/pyporting#during-installation

share|improve this answer
Thanks, though we've already decided to solve the problem by writing our script to handle the conversion. And yeah, I knew there were other options than using 2to3, but SymPy is a complex codebase (around 200k+ lines last time I checked) and using 2to3 was the only realistic strategy. Thanks again, in any case! – VPeric Jul 31 '11 at 20:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.