Tagged Questions

27
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, ...
25
votes
5answers
4k views

What's the proper way to install pip, virtualenv, and distribute for Python?

Short Question What is the proper way to install pip, virtualenv, and distribute? Background In my answer to SO question 4314376, I recommended using ez_setup so that you could then install pip ...
13
votes
3answers
573 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 ...
6
votes
1answer
1k views

“UserWarning: Unbuilt egg for setuptools” - What does this actually mean?

When I install things into a virtualenv using pip I often see the message "UserWarning: Unbuilt egg for setuptools". I always safely ignore it and go about my business and it doesn't seem to cause me ...
4
votes
1answer
339 views

Does pip handle extras_requires from setuptools/distribute based sources?

I have package "A" with a setup.py and an extras_requires line like: extras_require = { 'ssh': ['paramiko'], }, And a package "B" that depends on util: install_requires = ['A[ssh]'] If I ...
4
votes
1answer
214 views

What's the best layout for a python command line application?

What is the right way (or I'll settle for a good way) to lay out a command line python application of moderate complexity? I've created a python project skeleton using paster, which gave me a few ...
4
votes
1answer
1k views

Packaging resources with setuptools/distribute

I'm developing an Python egg that has several .txt dependencies (they're templates used to generate files by the egg itself), and I'm struggling to get those dependencies copied to site-packages ...
3
votes
2answers
117 views

How to include package data with setuptools/distribute?

When using setuptools/distribute, I can not get the installer to pull in any package_data files. Everything I've read says that the following is the correct way to do it. Can someone please advise? ...
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
286 views

How do I use data in package_data from source code?

In setup.py, I have specified package_data like this: packages=['hermes'], package_dir={'hermes': 'hermes'}, package_data={'hermes': ['templates/*.tpl']}, And my directory structure is roughly ...
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
0answers
35 views

python packages: how to depend on the latest version of a separate package

I'm developing coding a test django site, which I keep in a bitbucket repository in order to be able to deploy it easily on a remote server, and possible share development with a friend. I use hg for ...
2
votes
1answer
72 views

easy_install with pypy while Python is installed

I installed PyPy while still having Python 2.7 on my system. How do I install and then use easy_install with PyPy? What is the syntax for distinguishing where I want to install to with easy_install? ...
2
votes
0answers
77 views

installing a Python package source tarball with pip

I'm trying to figure out how to construct a Python source package that is installable via pip. I tried creating a test project with the setup.py file described on ...
2
votes
2answers
159 views

How do I make VirtualEnv use a custom version of setuptools?

The large corporation that I work for uses a custom version of Setuptools. This private fork of setuptools is intended to deal with certain networking and security difficulties that are unique to our ...
2
votes
1answer
438 views

Use distribute/setuptools to create symlink (or run script)?

As part of my project's setup process, I need to symlink one of the packages to a specified directory so an init.d script can find it. Is there any way to add this as a post-processing command to ...
2
votes
2answers
210 views

Including package data with Distribute

I'm trying to use Distribute for my project's setup.py. I want it to include all the files in the package folder, which are text and image files, but not .pyc files of course. I read that the files ...
2
votes
3answers
1k views

Introduction/tutorial to `pkg_resources`

I heard about Distribute's pkg_resources. I want it to organize resources such as images in my project. Is there a good tutorial on how to use it?
1
vote
2answers
218 views

Installing my sdist from PyPI puts the files in unexpected places

My problem is that when I upload my Python package to PyPI, and then install it from there using pip, my app breaks because it installs my files into completely different locations than when I simply ...
1
vote
2answers
790 views

Howto install distribute for Python 3

I am trying to install distribute using ActivePython 3.1.2 on Windows. Running python distribute_setup.py as described on the cheese shop give me: No setuptools distribution found running ...
0
votes
2answers
179 views

Specifying where to install 'tests_require' dependecies of a distribute/setuptools package

When I run 'python setup.py test' the dependencies listed in 'tests_require' in setup.py are downloaded to the current directory. I would like to have those dependencies installed in site-packages, ...
0
votes
2answers
201 views

Has anybody been able to install PyWeka?

I need to install in python 2.6 or 2.7 for windows the library PyWeka0.3dev, It says it requires setuptools, which I installed but then they told me it was a deprecated instalation library and I ...
0
votes
1answer
162 views

Is it possible to make eggs with a None zip-safe flag default to being instaleld zipped with Distribute?

Our large python project is being upgraded from using the legacy "setuptools" project to use "distribute" as a drop-in replacement. We've noticed one problematic difference between the two ...
0
votes
1answer
164 views

Python: Permission issue when installing an egg

Tried installing South sitewide with easy_install. However I'm having permission issues: drwxr-x--- 2 root root 4096 Nov 8 10:23 South-0.7.2-py2.6.egg-info I then tried installing it with pip ...