1
vote
2answers
17 views
force unpacking of certain egg directories
I have an egg distribution of a PyQt application which i build myself, and it contains sphinx generated documentation. When i call the help file from the application it opens the sphinx index.html in …
1
vote
3answers
44 views
Python importing modules differently when run interactively/non-interactively
One of my Python scripts runs in interactive mode but fails when run from the command line. The difference is that when run from the command line, it imports modules from a bad .egg file, and when run …
0
votes
2answers
81 views
How Do I Create a Python / Django Egg?
I have a Python program (with Django - does this matter?) that I want to 'bundle', if you like. How do I do this, in the same way one can create a .jar for Java?
0
votes
2answers
114 views
choose python version for egg installation | install parallel versions of site-package
Via fink install I put the following python version on my MacOSX:
python2.3,
python2.4,
python2.5,
python2.6.
Further, python is alias for python2.6 on my system.
I want to install an egg, e.g. …
1
vote
1answer
145 views
How to include and use .eggs/pkg_resources within a project directory targeting python 2.5.1
I have python .egg files that are stored in a relative location to some .py code. The problem is, I am targeting python 2.5.1 computers which require my project be self contained in a folder …
1
vote
4answers
847 views
Install MySQLdb (for python) as non-compressed egg
The install instructions are:
$ python setup.py build
$ sudo python setup.py install # or su first
This gives me an .egg file. How do I tell the install to dump the files as a normal, uncompressed …
0
votes
3answers
102 views
Python egg found interactively but not in fastcgi
In agreement to this question, and its answer. I added the path of the egg and it worked. However, when I run python interactively and I import flup, it works without any problem or additional path …
1
vote
2answers
67 views
I’d like some advice on packaging this as an egg and uploading it to pypi
I wrote some code that I'd like to package as an egg. This is my directory structure:
src/
src/tests
src/tests/test.py # this has several tests for the movie name parser
src/torrent
…
6
votes
1answer
423 views
How to run Python egg files directly without installing them?
Is it possible to run Python egg files directly as you can run jar files with Java?
example: java -jar jar-file
1
vote
1answer
109 views
How to make easy_install expand a package into directories rather than a single egg file?
How exactly do I configure my setup.py file so that when someone runs easy_install the package gets expanded into \site-packages\ as a directory, rather than remaining inside an egg.
The issue I'm …
5
votes
4answers
312 views
How can I make setuptools ignore subversion inventory?
When packaging a Python package with a setup.py that uses the setuptools:
from setuptools import setup
...
the source distribution created by:
python setup.py sdist
not only includes, as usual, …
1
vote
2answers
165 views
How to include a python .egg library that is in a subdirectory (relative location)?
How do you import python .egg files that are stored in a relative location to the .py code?
For example,
My Application/
My Application/library1.egg
My Application/libs/library2.egg
My …
11
votes
3answers
200 views
Do I have any obligations if I upload an egg to the CheeseShop?
Suppose I'd like to upload some eggs on the Cheese Shop. Do I have any obligation? Am I required to provide a license? Am I required to provide tests? Will I have any obligations to the users of this …
0
votes
2answers
176 views
How to do an interactive git rebase in egg/emacs?
I enjoy using the egg git-front-end in emacs, but I can't figure out how to do an interactive rebase to squash several commits into one. I know how do do in from the command line, but I can't see what …
3
votes
2answers
2k views
How do I install an .egg file without easy_install in Windows?
I have Python 2.6 and I want to install easy _ install module. The problem is that the only available installation package of easy _ install for Python 2.6 is an .egg file! What should I do?
