I am writing a little python app. I want to be able to easily deploy the app. I know that python 2.6 will allow one to execute an egg directly if there is a main module at the egg\'s root. I actually
If I have a Python package that depends on some C libraries (like say the Gnu Scientific Library (GSL) for numerical computations), is it a good idea to 开发者_如何转开发bundle the library with my cod
I have written a Python module including a submodule written in C: the module itself is called foo and the C part is foo._bar. The structure looks like:
I would like to distribute a precompiled C extension module for Python 2.6 and Python 2.7 for 32- a开发者_StackOverflownd 64-bit versions of Python. How should I build and distribute that on pypi? Sho
I\'m writing a Python class in C and I wa开发者_Go百科nt to put assertions in my debug code. assert.h suits me fine. This only gets put in debug compiles so there\'s no chance of an assert failure imp
Suppose you have a client/server application, say a webserver component and a qt gui. How do you layout your python code?
I finally got my program packaged in a RPM on Fedora 14 yesterday, and I thought that it would be easy to build it the same way on a CentOS 4.8 box. It turns out that the older version of rpm and dist
I\'m trying to get a non-generated script when I run setup.py install for a Python Package that I am building.
I was trying to install Python packages a system I recently gained access to. I was trying to take advantage of Python\'s relatively new per user site-packages directory, and the new option --user. (T
I\'ve written a Python script that uses a package that I\'ve created. I need to package it, so I can install it on several servers, but I can\'t get setup.py to find my scripts.