Tagged Questions
setup.py is a Python script required by libraries packaged and distributed with Distutils.
43
votes
6answers
15k views
python setup.py uninstall
I have installed a python package with python setup.py install.
How do I uninstall it?
8
votes
1answer
669 views
python c extension, problems with dlopen on mac os
I've taken a library that is distributed as a binary lib (.a) and header, written some c++ code against it, and want to wrap the results up in a python module.
I've done this here.
The problem is ...
7
votes
2answers
135 views
Create different distribution types with setup.py
Given the following (demonstration) project layout:
MyProject/
README
LICENSE
setup.py
myproject/
... # packages
extrastuff/
... # some extra data
How (and ...
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.
...
3
votes
1answer
87 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
281 views
When to use pip requirements file versus install_requires in setup.py?
I'm using pip with virtualenv to package and install some Python libraries.
I'd imagine what I'm doing is a pretty common scenario. I'm the maintainer on several libraries for which I can specify ...
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
3answers
448 views
Python setup script extensions, how do you include a .h file?
So I've got a directory that looks something like this:
home\
setup.py
some_python_file.py
ext\
__init__.py
c_file1.c
c_file2.c
ext_header.h
...
3
votes
1answer
664 views
Why does “python setup.py sdist” create unwanted “PROJECT-egg.info” in project root directory?
When I run
python setup.py sdist
it creates an sdist in my ./dist directory. This includes a "PROJECT-egg.info" file in the zip inside my "dist" folder, which I don't use, but it doesn't hurt me, ...
2
votes
1answer
57 views
Using 3rd Party Libraries in Python
I'm currently writing a simple Python (2.7) program using the Python Image Library. How can I make my program portable, so that I can run in on another computer (that doesn't already have PIL ...
2
votes
2answers
56 views
setup.py that pulls in github repos and puts them in the correct directory?
Is it possible to create a setup.py file that:
Pulls in a github repository
places the files from that repository into a specified folder
I'm setting up a django package/app that uses third-party ...
2
votes
2answers
51 views
How to add lib directory to sys.path when installed with custom prefix
I come from a C background with Autotools (./configure, make, make install) but have recently started to use Python. With Autotools I can install a program more or less anywhere on the system by doing ...
2
votes
1answer
48 views
pip is not installing my data_files. But easy_install does
This is going to be a short question.
The source is here: https://github.com/exhuma/grc
And the title explains my problem ;)
I registered and uploaded the package to pypi. Now if I run easy_install ...
2
votes
1answer
57 views
Running `chmod` after installing a package using `setup.py`
Let's assume I have a package which calls an executable file somewhere in the code (for example a third-party c/java-program). Let's further assume, the application is small/trivial enough to bundle ...
2
votes
1answer
98 views
Python: multiple packages with multiple setup.py files
I'm having a hard time constructing my Python setup.py files to do what I want. I have one pacakge set up like this:
somestuff_root/
setup.py
myutils/
__init__.py
a/
...
2
votes
0answers
297 views
library path for setup.py?
When trying to build numpy on a linux platform, I can't make the configure script look in the right place.
I use
python setup.py config --library-dirs=/software/intel/mkl/10.2.2.025/lib/em64t/
but ...
2
votes
1answer
92 views
python setup.py question
So I have a folder structure something like this:
pckA - core
- io
pckB - core
- io
- main
Now I have to create a setup.py file for both there packages. My current approach is :
...
2
votes
1answer
335 views
How do I stop setup.py from trying to include -arch ppc on MacOSX builds?
It appears that Xcode4 doesn't include PPC as a build option anymore. When using setup.py for modules that include C extensions, setup.py always attempts the build with these options:
gcc-4.2 ... ...
2
votes
3answers
104 views
setup.py imports not working correctly
I'm trying to install a simple python library I created and think I may be missing a step. The setup goes fine (or runs at least) but when I import it doesn't work as I expect.
The directory structure ...
2
votes
2answers
828 views
pip install PyQt IOError
I'm trying to install PyQt package with pip, but I get this error:
~$ pip install PyQt
Downloading/unpacking PyQt
Downloading PyQt-x11-gpl-4.8.3.tar.gz
(9.8Mb): 9.8Mb downloaded Running
...
2
votes
1answer
310 views
In setup.py or pip requirements file, how to control order of installing package dependencies?
I've got a Python package with its setup.py having dependencies declared via the usual way, in install_requires=[...]. One of the packages there, scikits.timeseries, has a setup.py expecting numpy to ...
2
votes
1answer
123 views
Call a function in a module after setup.py installation
I've got a program/joke that needs a reasonably large data structure to operate, (a dictionary that takes a few seconds to construct) and I would like to create and pickle it into the installation dir ...
2
votes
1answer
772 views
setup.py install dependency too?
I have a python source distribution, and it depends on some other modules that I've also made. The directory tree looks like this.
I've written a setup.py file for one of those modules (pydirac225, ...
2
votes
2answers
927 views
Compiler options wrong with python setup.py
I'm trying to install matplotlib on my mac setup. I find that setup.py has inaccurate flags, in particular the isysroot points to an earlier SDK.
Where does setup.py get its info and how can i fix ...
2
votes
2answers
4k views
Installing SUDS in python 2.6.4
I am having real trouble installing SUDS in python 2.6.4. I have tried to install the setup file but it says the location of python cannot be found. This is because I have changed the location of ...
1
vote
3answers
77 views
Can distutils perform a dependency check without installing?
Is it possible to have distutils just run the python module dependency analysis (and possibly install missing modules) without actually installing the python module in question? I imagine a command as ...
1
vote
1answer
52 views
python - distributing a command line application
Python newbie here. I'm trying to package a console app following this doc. To this end I created the following directory structure:
.
├── bin
│  └── txts
├── setup.py
└── txtstyle
├── ...
1
vote
1answer
32 views
How to include docs directory in python distribution
I have a python project with the following structure:
Clustering (project name)
clustering (package)
clustering.py and other modules
tests (sub-package)
test_clustering.py and ...
1
vote
1answer
95 views
Python's setup.py: how to install different files for different platforms
I'm writing a cross-platform package which need to include different binary file for different platforms (e.g. Linux/MAC OS/Windows and even 32bit/64bit Windows)
I need my package's setup.py to ...
1
vote
0answers
78 views
“undefined reference to `_head_libpython27_a'”
So, I've been trying to install py-notify (now I've been running into the same problems with trying to install cython), but I've run into a problem that I wasn't able to fix with Google this time (the ...
1
vote
1answer
88 views
Require BeautifulSoup in a Python Package - What's needed in setup.py?
I'm writing a setup script for a python distribution, foo. My code requires BeautifulSoup, so currently my directory is structured like so:
<root>/
setup.py
__init__.py
...
1
vote
2answers
223 views
Building console executable using py2exe, receiving suds import error
Attempting to build .exe using py2exe: python setup.py py2exe , receiving error:
ImportError: No module named suds
I have done some research which suggests that the module(s) have to be ...
1
vote
2answers
38 views
setup.py, setup() plus some other stuff
setup.py can contain any sort of Python code besides the call to the function setup(), I tested it with the following snippet:
from setuptools import setup
setup(name='MyPackage',
...
1
vote
1answer
174 views
setuptools: data files included with `bdist` but not with `sdist`
I've got a setup.py file which looks like this:
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="foo",
version="1.0",
packages=find_packages(),
...
1
vote
0answers
90 views
How to add a variable in Directory MSI table using msilib
I want to use a path edit control in my setup application I am designing using Python msilib. But I am getting an error in the MSI saying:
The specified path is unavailable.
Can somebody help me ...
1
vote
1answer
96 views
Help with Python setup.py with multiple folders
I'm trying to build my program on the OBS. Could you please tell me what the setup.py should look like to create a folder structure, for example if I have this:
../MyProgram
COPYING
README
...
1
vote
1answer
242 views
buildout MercurialRecipe breaks on multiple import
I've been trying to import several packages which are actually dependencies to an egg I am building. Because these eggs are not on the cheese store, I am not able to use the install_requires = ...
1
vote
2answers
755 views
How to chmod files within a python setup.py?
I created a python package installation with a setup.py, and i want it to copy a data file in the folder (created for the occasion) ~/.did. The problem is that i have to call setup.py with sudo ...
1
vote
1answer
686 views
How to Build a 32-bit Python Module Distribution w/ Setup.py on x86_64 Host
I need to compile a 32-bit distribution of PyEphem. It does not seem like this should be difficult, however, I'm running into some compiler issues.
$ CFLAGS=-m32 python setup.py bdist -p i386
running ...
1
vote
2answers
527 views
Setuptools not found
I am switching from Linux to OSX and when I run our build's setup.py script, I get an error message that contains the text
This script requires setuptools version 0.6c7.
I have tried several ...
1
vote
1answer
298 views
How to compile gettext translations in setup.py of a Django app
How can I make sure setup.py compiles projects PO files and include them whenever an sdist is created. This is a Django app and manual process to generate MO files is to run following command in the ...
1
vote
1answer
272 views
Python setuptools custom configuration
I'm packaging up a python module, and I would like users to be able to build the module with some custom options. Specifically, the package will do some extra magic if you provide it with certain ...
0
votes
1answer
27 views
Django project loads in site-packages
After I run setup.py to install a project, the project admin works fine but here's the problem.
Except of the project running from my c:\project.
It's runs from another location at ...
0
votes
1answer
17 views
listing multiple versions on pypi
I am using setup.py / distutils to distribute a package. How can multiple released versions of a py package be listed on pypi using setup.py/distutils? right now when I submit the latest version, it ...
0
votes
1answer
62 views
gcc error from easy_install of setproctitle
I'm trying to install setproctitle. I've tried just downloading the package and using setup.py to install and I've tried easy_install. Neither method works, both come up with something that looks ...
0
votes
2answers
109 views
setup.py and source control repository
I am about to build a new python lib and I was seeking information concerning packaging in Python.
I understand that "setup.py" is the script that controls everything. I wonder how to deal with it ...
0
votes
0answers
39 views
Modeller script build_profile.py doesnt get the correct output
9 for protein structure modelling, by the way it runs on python2.3, i made the installation previously, when i run the script the output isnt rigth it should be an aligment of all the protein ...
0
votes
0answers
95 views
How may I override the compiler (gcc) flags that setup.py uses by default?
I understand that setup.py uses the same CFLAGS that were used to build python. I have a single C extension of ours that is segfaulting. I need to build it withOUT -O2 because -O2 is optimizing out ...
0
votes
1answer
62 views
simple setup.py seemingly broken
On Windows 7, running Python 2.7, python setup.py install installs python-money, but doesn't install the included money.django package.
The setup.py file can be found here. I've included it below for ...
0
votes
1answer
164 views
set file permission in setup.py file
I created a python software install with setup.py . In this software i use data files (XML file) when i install these xml file using setup.py then these files save with other files in ...