Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
250 views

How can I deal with python eggs for multiple platforms in one location?

We have a common python installation for all of our systems in order to ensure every system has the same python installation and to ease configuration issues. This installation is located on a shared ...
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
1answer
186 views

pylint doesn't like pkg_resources.resource_filename

In my script I use: python from pkg_resources import resource_filename Both PyDev and pylint 0.23 complain about unresolved import here. E0611 No name 'resource_filename' in module ...
1
vote
1answer
433 views

Open file in universal-newline mode when using pkg_resources?

I am processing a CSV file and have the following working code: reader = csv.reader(open(filename, 'rU'), dialect='excel') header = reader.next() However, to be compatible with elsewhere in the ...
1
vote
3answers
234 views

How can I manually register distributions with pkg_resources?

I'm trying to get a package installed on Google App Engine. The package relies rather extensively on pkg_resources, but there's no way to run setup.py on App Engine. There's no platform-specific ...
1
vote
2answers
336 views

Accessing python egg's own metadata

I've produced a python egg using setuptools and would like to access it's metadata at runtime. I currently got working this: import pkg_resources dist = pkg_resources.get_distribution("my_project") ...
0
votes
1answer
27 views

Getting package version using pkg_resources?

What is the recommended way getting hold of the package version of a package in the $PYTHONPATH or sys.path? I remember that the pkg_resource module has some functionality for this but I can not find ...
0
votes
1answer
76 views

Custom icon for .pkg file on Lion OSX

I have created a package using PackageMaker and want to change the default icon for .pkg file. After some googling, seticon utility from here http://sveinbjorn.org/osxutils_docs solved my problem for ...
0
votes
1answer
799 views

pkg_resources not found after installing setuptools

I am trying to compile and install python2.6.4 on Debian 5.0.3 (64bit). I installed using 'make altinstall' as I want to keep python 2.5.2 that comes with Deb5.0 as my default python. Following this, ...