Using Python packaging tools to maintain source distributions in other languages?
Greetings all, I would like to leverage the Python packaging tools (e.g. distutils, setuptools, distribute, et. al.) to maintain (i.e. download, extract, configure, make, install, package) source distributions other than Python modules (e.g. zlib, openssl). Are there any open-source packages/tools that already do this? Any documentation in print or on the web that outlines a basic plan for doing such? Any and all help greatly appreciated. -- http://mail.python.org/mailman/listinfo/python-list
Re: Using Python packaging tools to maintain source distributions in other languages?
On Monday, July 23, 2012 11:59:10 PM UTC-6, Rusi wrote: > On Jul 23, 11:16 pm, eric.lemi...@gmail.com wrote: > > Greetings all, > > > > I would like to leverage the Python packaging tools (e.g. distutils, > setuptools, distribute, et. al.) to maintain (i.e. download, extract, > configure, make, install, package) source distributions other than Python > modules (e.g. zlib, openssl). > > > > Are there any open-source packages/tools that already do this? Any > documentation in print or on the web that outlines a basic plan for doing > such? > > > > Any and all help greatly appreciated. > > Ive heard good things about scons > http://en.wikipedia.org/wiki/SCons I've heard about SCons but don't know much about it. From what little I've read, it's only a make tool replacement. I'm looking for more "end-to-end" maintenance tools similar to -- perhaps built upon -- disutils, setuptools, and company. -- http://mail.python.org/mailman/listinfo/python-list
Windows No-Install Distribution?
Hi, I would like to create/find a Python 3.x distribution that can be redeployed simply by copying a directory of required files; i.e. without the need for actually "installing" an MSI, modifying Windows registry entries, etc. First of all, will Python even work on Windows simply by copying files from one system to another? If so, does such a "no-install" distribution already exist? If not, what are the minimum set of Python 3.x files from a standard Windows Python installation required for proper/normal operation? Thanks, Eric. -- http://mail.python.org/mailman/listinfo/python-list
Re: Windows No-Install Distribution?
On Aug 23, 9:31 am, Redcat wrote: > I haven't tried it myself yet, but mighthttp://www.portablepython.com/ > be what you're looking for? Almost except it contains additional Python packages that I'm not interested in. -- http://mail.python.org/mailman/listinfo/python-list
Re: Windows No-Install Distribution?
On Aug 23, 1:52 pm, Stephen Hansen wrote: > On 8/23/11 8:29 AM, Eric Lemings wrote: > > > I would like to create/find a Python 3.x distribution that can be > > redeployed simply by copying a directory of required files; i.e. > > Just take the default installer, install it, and then check the Python > directory: does it have the python DLL? If not, go look into the > system32 directory, grab it, drop it in the Python directory. (If you > installed for all-users this will happen, > > Now copy/zip/whatever that Python directory to another machine where it > was not installed. It'll work fine. > > You'll have to explicitly provide the path to the Python.exe of course; > you can't just double-click on a .py or run 'python blah.py', but if > your shortcuts/whatever all do C:\Where\You\Installed\Python.exe, > everything should just work. > > We do that at work and never run into any trouble. (We actually provide > a MSI but only for convenience of customers who want to auto-install via > Group Policy). > > In most situations, Python's good at "finding itself", i.e. where the > python.exe is actually located -- and it boostraps the location of > everything else based on that. > > -- > > Stephen Hansen > ... Also: Ixokai > ... Mail: me+list/python (AT) ixokai (DOT) io > ... Blog:http://meh.ixokai.io/ > > signature.asc > < 1KViewDownload Excellent start. Which files comprise the standard Python library? Only the files in the 'Lib' subdirectory or are more needed? -- http://mail.python.org/mailman/listinfo/python-list