packaging Python files

Raseliarison nirinA nirina at mail.blueline.mg
Tue Apr 8 17:21:59 EDT 2003


"Rajarshi Guha" <rajarshi at presidency.com> wrote:
>I was wondering whether there was any framework to create a
> single Python file that would contain all the required files of the
> project so that a user would simply run the file. Is this a good idea?
> Has it been implemented?

Distutils , i think. Describe your program in a file 'setup.py', run

python setup.py sdist

to create the package. Users have just to unpack it and run

python setup.py install

to ... install

Is that suit your needs?

nirinA








More information about the Python-list mailing list