Tagged Questions
Distutils is a build system for Python modules and packages, similar to what ant is for java.
28
votes
4answers
1k views
Differences between distribute, distutils and setuptools?
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. To do that, I need to use distribute, ...
17
votes
5answers
1k views
State of Python Packaging: Buildout, Distribute, Distutils, EasyInstall, etc
The last time I had to worry about installing Python packages was two years ago working with Enthought, NumPy and MayaVi2. That experience gave me lingering nightmares related to quirky behavior ...
16
votes
5answers
5k views
Python distutils - does anyone know how to use it?
I wrote a quick program in python to add a gtk GUI to a cli program. I was wondering how I can create an installer using distutils. Since it's just a GUI frontend for a command line app it only works ...
14
votes
3answers
575 views
How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?
The Twisted Plugin System is the preferred way to write extensible twisted applications.
However, due to the way the plugin system is structured (plugins go into a twisted/plugins directory which ...
12
votes
9answers
6k views
Python Daemon Packaging Best Practices
I have a tool which I have written in python and generally should be run as a daemon. What are the best practices for packaging this tool for distribution, particularly how should settings files and ...
10
votes
3answers
272 views
Best practices for Python deployment — multiple versions, standard install locations, packaging tools etc
Many posts on different aspects of this question but I haven't seen a post that brings it all together.
First a subjective statement: it seems like the simplicity we experience when working with the ...
9
votes
1answer
139 views
Standard way to create debian packages for distributing python programs?
Out there there is a ton of information on how to do this, but since "there is more than a way to skin a cat", and all the tutorials/manuals that cover a bit of the process seem to make certain ...
9
votes
2answers
2k views
How can I make setuptools install a package that's not on PyPI?
I've just started working with setuptools and virtualenv. My package requires the latest python-gearman that is only available from GitHub. The python-gearman version that's on PyPI is an old one. The ...
9
votes
2answers
1k views
How can i bundle other files when using cx_freeze?
I'm using Python 2.6 and cx_Freeze 4.1.2 on a Windows system. I've created the setup.py to build my executable and everything works fine.
When cx_Freeze runs it movies everything to the build ...
9
votes
3answers
1k views
Don't touch my shebang!
One thing I hate about distutils (I guess he is the evil who does this) is that it changes the shebang line. In other words, the more rational and environment-vars decided scripture
#!/usr/bin/env ...
8
votes
2answers
681 views
Python can't locate distutils_path on Mac OSX
I've been using virtualenv + pip for python development. I'm not sure what happened, but suddenly whenever I try to run a command-line tool or import libraries, I get this error message:
Traceback ...
8
votes
2answers
1k views
python distutils does not include data_files
I am new to distutils.. I am trying to include few data files along with the package.. here is my code..
from distutils.core import setup
setup(name='Scrapper',
version='1.0',
...
7
votes
1answer
2k views
Compiling with cython and mingw produces gcc: error: unrecognized command line option '-mno-cygwin'
I'm trying to compile a python extension with cython in win 7 64-bit using mingw (64-bit).
I'm working with Python 2.6 (Active Python 2.6.6) and with the adequate distutils.cfg file (setting mingw as ...
7
votes
2answers
2k views
How can I add post-install scripts to easy_install / setuptools / distutils?
I would like to be able to add a hook to my setup.py that will be run post-install (either when easy_install'ing or when doing python setup.py install).
In my project, PySmell, I have some support ...
6
votes
4answers
128 views
Disabling output when compiling with distutils
I have a setup.py script which needs to probe the compiler for certain things like the support for TR1, the presence of windows.h (to add NOMINMAX define), etc. I do these checks by creating a simple ...
6
votes
3answers
153 views
Should I bundle C libraries with my Python application?
If I have a Python package that depends on some C libraries (like say the Gnu Scientific Library (GSL) for numerical computations), is it a good idea to bundle the library with my code?
I'd like to ...
6
votes
1answer
689 views
Python packages installation in Windows
I recently began learning Python, and I am a bit confused about how packages are distributed and installed.
I understand that the official way of installing packages is distutils: you download the ...
6
votes
3answers
628 views
How can I run a Makefile in setup.py?
I need to compile ICU using it's own build mechanism. Therefore the question:
How can I run a Makefile from setup.py? Obviously, I only want it to run during the build process, not while installing.
6
votes
3answers
1k views
How to extend distutils with a simple post install script?
I need to run a simple script after the modules and programs have been installed.
I'm having a little trouble finding straight-forward documentation on how to do this. It looks like I need to inherit ...
5
votes
2answers
367 views
Automatic version number both in setup.py (setuptools) AND source code?
SITUATION:
I have a python library, which is controlled by git, and bundled with distutils/setuptools. And I want to automatically generate version number based on git tags, both for setup.py sdist ...
5
votes
2answers
207 views
python setup.py develop to override installed version
I have a package I am developing. This package is already installed as an egg file parked in the site-packages directory, egg path added to easy-install.pth.
I now realized I have a bug in the ...
5
votes
2answers
198 views
How can I assert from Python C code?
I'm writing a Python class in C and I want to put assertions in my debug code. assert.h suits me fine. This only gets put in debug compiles so there's no chance of an assert failure impacting a user ...
5
votes
2answers
351 views
Rename script file in distutils
I have a python script, myscript.py, which I wish to install using distutils:
from distutils.core import setup
setup(..., scripts=['myscript.py'], ...)
I'd prefer if I could call the installed ...
5
votes
2answers
372 views
Python: Installing man pages in distutils based project
I have a Python project which is basically a set of command line scripts and a helper package. As these scripts have a number of command line options I decided to create a manual page for each script ...
5
votes
3answers
256 views
Why can't I include these data files in a Python distribution using distutils?
I'm writing a setup.py file for a Python project so that I can distribute it. The aim is to eventually create a .egg file, but I'm trying to get it to work first with distutils and a regular .zip.
...
5
votes
1answer
388 views
Using SCons as a build engine for distutils
I have a python package with some C code needed to build an extension (with some non-trivial building needs). I have used SCons as my build system because it's really good and flexible.
I'm looking ...
5
votes
2answers
819 views
Problem installing OpenERP server with buildout !
I'm trying to deploy OpenERP with a buildout and my own piece of code. In fact I would like to build a complete deployement structure allowing me to use OpenERP with custom modules and patch.
First ...
5
votes
2answers
283 views
How to run installed python script?
I used distutils to install my python package, with this setup.py :
import distutils.core
args = {
'name' : 'plugh',
'version' : '1.0',
'scripts' : [ ...
5
votes
4answers
2k views
Custom distutils commands
I have a library called "example" that I'm installing into my global site-packages directory. However, I'd like to be able to install two versions, one for production and one for testing (I have a ...
5
votes
3answers
2k views
Including non-Python files with setup.py
How do I make setup.py include a file that isn't part of the code? (Specifically, it's a license file, but it could be any other thing.)
I want to be able to control the location of the file. In the ...
5
votes
2answers
415 views
Which is the most pythonic: installing python modules via a package manager ( macports, apt) or via pip/easy_install/setuptools
Usually I tend to install things via the package manager, for unixy stuff. However, when I programmed a lot of perl, I would use CPAN, newer versions and all that.
In general, I used to install ...
5
votes
6answers
2k views
Python distutils, how to get a compiler that is going to be used?
For example, I may use "python setup.py build --compiler=msvc" or "python setup.py build --compiler=mingw32"or just "python setup.py build", in which case the default compiler (say, "bcpp") will be ...
4
votes
2answers
53 views
How to pass flags to a distutils extension?
I'm trying to install a Python module that contains C modules. The C code relies on a library being available in the system's global install locations (/usr/include, /usr/lib), but in my case I only ...
4
votes
3answers
292 views
What exactly does distutils do?
I have read the documentation but I don't understand.
Why do I have to use distutils to install python modules ?
Why do I just can't save the modules in python path ?
4
votes
2answers
1k views
distutils and package_data: cannot copy whole directory content
Let's take the following project layout:
$ ls -R .
.:
package setup.py
./package:
__init__.py dir file.dat module.py
./package/dir:
tool1.dat tool2.dat
And the following content for ...
4
votes
2answers
299 views
Install two python modules with same name
What's the best way to install two python modules with the same name? I currently depend on two different facebook libraries: pyfacebook and Facebook's new python-sdk. Both of these libraries install ...
4
votes
2answers
490 views
Directly call distutils' or setuptools' setup() function with command name/options, without parsing the command line?
I'd like to call Python's distutils' or setuptools' setup() function in a slightly unconventional way, but I'm not sure whether distutils is meant for this kind of usage.
As an example, let's say I ...
4
votes
2answers
330 views
Distribute pre-compiled python extension module with distutils
Quick one today: I'm learning the in's and out's of Pythons distutils library, and I would like to include a python extension module (.pyd) with my package. I know of course that the recommended way ...
4
votes
4answers
650 views
Can a Python package depend on a specific version control revision of another Python package?
Some useful Python packages are broken on pypi, and the only acceptable version is a particular revision in a revision control system. Can that be expressed in setup.py e.g
requires = ...
4
votes
4answers
871 views
Configuring extension modules with distutils/setuptools
I have a Python project with mutiple extension modules written in C, which talk to a third-party library. However, depending on the user's environment and options some modules should not be built, ...
4
votes
3answers
661 views
How to trigger post-build using setuptools/distutils
I am building an application using py2app/setuptools, so once it creates application bundle I want to take some action on dist folder e.g. create a installer/upload it.
Is there a way? I have found ...
4
votes
3answers
813 views
Accessing data files before and after distutils/setuptools
I'm doing a platform independent PyQt application. I intend to use write a setup.py files using setuptools. So far I've managed to detech platform, e.g. load specific options for setup() depending on ...
4
votes
2answers
940 views
distutils: How to pass a user defined parameter to setup.py?
Please prompt me how to pass a user-defined parameter both from the command line and setup.cfg configuration file to distutils' setup.py script. I want to write a setup.py script, which accepts my ...
4
votes
4answers
313 views
How do I assign a version number for a Python package using SVN and distutils?
I'm writing a Python package. The package needs to know its version number internally, while also including this version in the setup.py script for distutils.
What's the best way of doing this, so ...
4
votes
1answer
305 views
Packaging a Python library
I have a few Munin plugins which report stats from an Autonomy database. They all use a small library which scrapes the XML status output for the relevant numbers.
I'm trying to bundle the library ...
4
votes
2answers
496 views
Finding a file in a Python module distribution
I've written a Python package that includes a bsddb database of pre-computed values for one of the more time-consuming computations. For simplicity, my setup script installs the database file in the ...
3
votes
1answer
88 views
python - setup.py copy file to certain location
As part of the installation process I would like to copy a config file to user's home directory, i.e. ~/.foo.conf
What is the usual approach to do this with setup.py? Should I write code in setup.py ...
3
votes
1answer
102 views
Deciding which package manager was used to install a Python package
I want to remove a Python package, let's say Satchmo. But I don't remember which tool I used to install it.
I can think of the following ways:
Downloading source
distutils
distribute
SetupTools
...
3
votes
1answer
72 views
What is the recommended way to generate and copy some files to arbitrary places in a setup.py?
I have a PyQT KDE application and I need to generate some files(with pyuic and pyrcc commands) and copy some files(.desktop) to some places(ie /usr/share/applications/kde4/). What are preferred ways ...
3
votes
1answer
207 views
how to use distutils to create executable .zip file?
Python 2.6 and beyond has the ability to directly execute a .zip file if the zip file contains a __main__.py file at the top of the zip archive. I'm wanting to leverage this feature to provide preview ...