[Tutor] disutils

Alan Gauld alan.gauld at btinternet.com
Fri Mar 9 01:21:12 CET 2012


On 08/03/12 23:49, Ejaj Hassan wrote:
>    I was just going through a book on python and came across this
> 'disutils'. Can somebody explained to me about this.


I assume you mean distutils? If so here is the official help description:

----------------
DESCRIPTION
     The main package for the Python Module Distribution Utilities.

Normally used from a setup script as

        from distutils.core import setup

        setup (...)
-------------------

So it's a set of tools for distributing your finished code
modules so that other people can easily install them on
their computer.

Now, what else do you need to know?
The more specific the question the more specific the answer...

-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/



More information about the Tutor mailing list