JAR equivalent in Gordon McMillan's Installer
Jeff Shannon
jeff at ccvcorp.com
Thu Feb 14 14:58:13 EST 2002
More information about the Python-list mailing list
Thu Feb 14 14:58:13 EST 2002
- Previous message (by thread): JAR equivalent in Gordon McMillan's Installer
- Next message (by thread): JAR equivalent in Gordon McMillan's Installer
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Paul Moore wrote: > I have no requirement to include a Python interpreter, or C extensions, > in the archive. The code is all pure Python. But, I do want to be able > to include support files (text files, image files for use in wxPython > toolbars, graphics for display on screen, sound files, etc etc) which > can be picked up from the same archive. If you require this being in a single archive file only for transfer purposes, you can use distutils (standard in 2.1+, not sure about 2.0). Distutils will create a single zipfile/.tgz/rpm that can be distributed easily. To install the package, it's only necessary to open the archive and type 'python setup.py install'. (It may also be able to create a single-file self-installing .exe on Windows.) Note that once you install the package, it is no longer a single archive file, but is fully extracted to its individual component files, so this may or may not meet your needs. Jeff Shannon Technician/Programmer Credit International
- Previous message (by thread): JAR equivalent in Gordon McMillan's Installer
- Next message (by thread): JAR equivalent in Gordon McMillan's Installer
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list