setup.py is a Python script required by libraries packaged and distributed with Distutils.

learn more… | top users | synonyms

0
votes
2answers
21 views

Python packaging with alternative setup.py

Is it possible to indicate that a specific file will become setup.py during the building process (e.g., python setup.py sdist) when using distutils (or distribute, or else) ? I would like to be able ...
0
votes
0answers
12 views

How can I change setup.py make flags?

I was just building an application using python setup.py build and it seems it is only using one process. I was wondering if there is any way to make it use more processes (like with make -j4 for ...
0
votes
1answer
45 views

Building NumPy on RedHat

I installed a local version of Python 2.7 in my home directory (Linux RedHat) under ~/opt using the --prefix flag. More specifically, Python was placed in ~/home/opt/bin. Now, I want to install ...
0
votes
0answers
18 views

How to get the installed package info (path, Entry module) of Python?

I want to get the installed packages that in my project have not be used. Get the Installed packages (Include these dependences). Traversal all imported modules that in my project and it couldn't ...
0
votes
1answer
42 views

Learn Python the hard way ex 46. Can't make a working module! How does setup.py work?

I did everything up until the quiz, but I can't get a module to work. I tried using a file with .py extension and doing from test_project import *, then tried using a method in the sum_stuff directory ...
2
votes
1answer
20 views

Proper Python packaging with external package dependencies

Let's suppose I have a project that depends on packages that should only be installed via the systems package manager (e.g. bindings to C libraries), so that install_requires is not working. ...
0
votes
0answers
33 views

Overriding or disabling ${python:Depends} at stdeb bdist_deb invocation

I am trying to package my Python software with stdeb: python setup.py --command-packages=stdeb.command bdist_deb which works fine. Unfortunately, stdeb adds the variable ${python:Depends} to the ...
1
vote
1answer
56 views

Applying C compiler CFLAGS when building Python native extensions with setup.py

I am building an app for OSX, currently I am getting Illegal Instruction 4 error messages when running the application. One SOF question suggested adding -mmacosx-version-min=10.7 to the build ...
0
votes
1answer
94 views

Enthought Canopy 1.0 missing Python.h and other includes

I installed the Canopy distribution from Enthought for Mac OSX 64 bit and the include/python-2.7 folder is missing. I couldn't find a package that includes this, has anyone had this problem and a ...
0
votes
1answer
37 views

After setup.py, module must be explicitly imported from package

I've just made my first Python package with a setup script and am wondering if this behavior is normal. It's composed of one module containing a class I'd like to access. The project structure is like ...
2
votes
0answers
25 views

Hooks in setuptools/distutils for post-install verification

I have a package that uses swig to generate some C++ interfaces to an external library, specifically udunits-2. On some systems, namely CentOS, the package will install successfully but when python ...
0
votes
1answer
39 views

What option do I need in setup.py to create the package in the right directory?

I am using setup.py to create a python package, which I want to install via pip. To correctly install the files under lib/python2.7/site-packages/<package-name> I used the following option ...
2
votes
1answer
46 views

How to specify explicit python packaging dependencies in setup.py? [duplicate]

I want to create a python package mycode, to be installed using pip (setup.py), which has a dependency on another package base. To incoporate this package dependency I follow the setup.py instructions ...
1
vote
0answers
75 views

Installing pure-python package as subpackage of another platform-dependent package

I have a pure-python package B and a platform-dependent package A (i.e. A contains C-extension module). I wish to install B as a subpackage of A, and the expected hierarchy is like, ...
3
votes
2answers
274 views

Difference between 'python setup.py install' and 'pip install'

So I have an external package I want to install into my python virtualenv in a tar file. What is the best way to install the package? I've discovered 2 ways that can do it: 1) Extract the tar file, ...
1
vote
0answers
24 views

Error when building a project

I cloned an organism project from github. I tried to install it, but there is no one setup.py file and no documentation. Could you advise me how to correctly build and install it under Ubuntu 12.04? ...
1
vote
1answer
39 views

Python 3.3 can't seem to find the decoder module in pocketsphinx library

I am getting the error AttributeError: 'module' object has no attribute 'Decoder'. I am using the following code. Because there was no setup.py file included I moved the dlls and libraries into their ...
1
vote
1answer
61 views

Why `setup.py install` does not update the script file?

In the setup.py file, I write like this: from distutils.core import setup setup( # skip a lot of information here.. scripts = ["chilin2/ChiLin2.py"], ) I've setup my package successfully at ...
1
vote
1answer
34 views

How to skip installing data files if not running as root?

I have to deploy a Python project together with a script that is used via a command line interface. To help users, I also include a Bash completion file that is placed into /etc/bash_completion.d. ...
1
vote
1answer
132 views

PyPI upload stopped working and pip install fails

I submitted my first PyPI project last night and things are not working as expected (warning long post ahead)... I originally uploaded the project, cvrfparse, via the commandline by doing: % python ...
1
vote
1answer
56 views

How would I run a script file as part of the python setup.py install?

Question I know how to use setup.py with setuptools to register a script. How would I run another script file (let say a make file) as part of the python setup.py install. Background I imagine that ...
-1
votes
1answer
58 views

Bootstrapping setup.py for Python 3 project [closed]

I've been trying to create a setup.py file for my python 3 project package, and it keeps and when I try to debug the setup with this code: c:\Python33\Python.exe setup.py sdist the cmd tells me that ...
5
votes
2answers
93 views

setup.py requires MySQL-python

I'm writing a setup.py script and want to specify a dependency onto MySQL package: requires=['requests', 'mock', 'GitPython', 'MySQL-python'] But MySQL-python looks to be illegal for setup tool ...
1
vote
1answer
58 views

Custom Python Package Won't Properly Install via Pip In VirtualEnv

I've created a new python package for a project I'm working on. It has a folder structure that resembles: bin docs mypackage license.md readme.md setup.py Here are the contents of my setup.py: ...
1
vote
1answer
44 views

How to include projects in personal SCM repositories (not in pypi) to setup.py?

What's the idiomatic way to build python projects that depend on projects in other source control repositories (e.g private projects not on pypi)? Let's say I have a project foobar hosted at ...
0
votes
1answer
189 views

Unable to execute “python setup.py build” command..!

I am trying to install pylorcon-1 (the python wrapper for Lorcon used for writing a sniffer for wireless packets) on BACKTRACK 5 R1 Virtual Machine...The package that I downloaded from [Pylorcon ...
4
votes
1answer
126 views

how to write setup.py for this application structure?

I have written an application with python (2.7). The structure looks like: kent$ tree myApp myApp |-- foo.py |-- gui | |-- g1.py | |-- g2.py | |-- g3.py | `-- __init__.py |-- icons | |-- ...
0
votes
1answer
92 views

pip install virtualenv where are the scripts

This is probably an incredibly stupid question, but I'm testing out a python package that I wrote that has some scripts. I did the following sequence: created a distribution using setup.py created ...
0
votes
1answer
89 views

How do I distribute data files with a python package such that they're readable?

I have a python module with a setup like this: from distutils.core import setup setup = ( ... package_data={'mypackage': ['my/file.data']}) in a package laid out like this: mypackage/ ...
0
votes
1answer
74 views

python setup.py directory permissions

I am trying to create a setup.py that will build rpm/deb packages and I want it to create a blank directory with 777 permissions. I have it creating the directory via data_files data_files=[ ...
2
votes
2answers
69 views

python setup.py sdist only including .py source from top level module

I have a setup.py: from setuptools import setup setup( ... packages=['mypackage'], test_suite='mypackage.tests', ... ) python setup.py sdist creates a file that ...
2
votes
0answers
50 views

What is Trove? And should I care? [closed]

After reading a little on Github I found, that there seems to be a project called Trove (reference correct? Since 2002 no updates?) and people seem to care about it. Yet there isn't much of a ...
3
votes
1answer
83 views

how to set bug tracker url in setup.py script

I have just discovered the pypi web UI have a field 'Bug tracker URL' in edit of egg metadata. This field exists so I guess it is supported in setup.py but I can't find anything about this using ...
3
votes
3answers
6k views

Python 3: ImportError “No Module named Setuptools”

I'm having troubles with installing packages in Python 3. I have always installed packages with "setup.py install" command. But now when i try to install ansicolors package i get importerror "No ...
1
vote
2answers
68 views

PyPi Server Response 500

I'm trying to regsiter my package on PyPi, with the following command: pyton setup.py register But it results in the following error: Server response (500): <urlopen error [Errno -2] Name or ...
1
vote
1answer
181 views

Any python function to get “data_files” root directory?

This should be a very common question for developers who used "setup.py" to build installation packages and it should be asked before but I couldn't find the proper answer anywhere. In setup.py from ...
0
votes
0answers
32 views

Is there a standard way to downloading third-party data files in setup.py?

This question is focused on the distribute flavor of setup.py since from what I can tell it's supposed to replace distutils. My goal is to have a python module skeleton that as part of it's setup ...
0
votes
0answers
70 views

How do I ignore a project setup.cfg when running setup.py install?

I have a local virtualenv, but one of the projects I want to install in the virtualenv has a setup.cfg file sitting at the same level as the setup.py script. How do I run setup.py install ignoring the ...
1
vote
1answer
85 views

Py2app ImportError for user-created module

So I have a directory tree like this: / setup.py src/ ui.py load.py search.py parser.py img.py obj.py #..etc res/ img.py Setup.py looks like this: ...
2
votes
1answer
74 views

setup.py: restrict the allowable version of the python interpreter

I have a python library. Unfortunately I have not updated it to work with python 3 yet. in its setup.py, I added install_requires=['python<3'], My intent was to not allow this package to be ...
0
votes
0answers
34 views

need to copy files when setup.py is run

I'm writing a setup.py file. setup( name='Example', version='0.1dev', py_modules=['ss',], package_dir = {'': 'ss'}, license='', long_description=open('README.txt').read(), ) ...
1
vote
1answer
254 views

Override setup.cfg options to achieve default behavior

I have a setup.cfg containing Linux installation options, [install] prefix=/opt/foo install-lib=/opt/foo which corresponds to the default directory layout this project has under Linux. Now the ...
0
votes
1answer
57 views

Get the runpath of a python console-script

Short of it - I need to get a console_script to return to me its current run path, so that I can override modules it is using at run time. Here is my basic setup (summarized as best I could): ...
0
votes
1answer
70 views

Is possible to write in Python script setup.py which is going to check if all required packages already installed - otherwise install them

I am making Tornado application(new to Python and Tornado so maybe question is stupid), and I am using additional Python packages like lepl, sqlalchemy and so on. Is possible to write in Python script ...
0
votes
1answer
58 views

Py2app keyflag error CFLAGS

What I'm trying to do is compile a program I've written in Python 2.7, using pygame, into a standalone app for Mac computers. I'm working on a PC running Windows 8 with no access to a mac, so ...
0
votes
1answer
69 views

I want to run commands like make ,make install and python setup install

Actually i have written a script which will download software from internet to the home dir of the current user and the it will untar it .And the i have make and make install it and in some software i ...
3
votes
1answer
99 views

Python setup.py points to . as opposed to the directory specified in setup.py?

This is my current project setup: . ├── README.md ├── build │   ├── bdist.macosx-10.8-intel │   └── lib ├── dist │   └── giordano-0.1-py2.7.egg ├── giordano.egg-info │   ├── PKG-INFO │   ├── ...
1
vote
1answer
76 views

Distribute, epydoc, and setup.py

I would like to have a target (say docs) that runs epydoc for my package. I assume that I need to create a new command but I am not having much luck. Has anyone done this before?
1
vote
1answer
44 views

Python script.py file url parameter

I am very new to python and am learning to create python distributions. I have realized that setup.py file is an essential part of this process. I was wondering however what the value of the 'url:' ...
0
votes
1answer
65 views

Why are files missing when I upload an egg to pypi?

Following the instructions on http://plone.org/documentation/kb/how-to-upload-your-package-to-plone.org/distuttils-commands-and-.pypirc, I uploaded an egg to pypi (adi.workingcopyflag).The created egg ...

1 2 3 4