I am using buildout.I am using it to install openerp.I would like the scripts that openerpcreates to run itself available in ${buil开发者_运维知识库dout:location}/bin
I\'m trying to distribute this app that I wrote in python. The application consists of 2 python scripts. 2 .glade files and 1 .png file.
When I build a c extension using python setup.py build, the result is created under a directory named
I need to compile ICU using it\'s own build mechanism. Therefore the question: How can I run a Makefile f开发者_运维问答rom setup.py? Obviously, I only want it to run during the build process, not wh
I\'m trying to upload my package to PyPI. It asks me to identify, I do, it gives an OK response (which doesn\'t happen unless the identification is right), but then it claims I didn\'t identify! Why?
I\'m writing a Python extension in C that requires the CoreFoundation framework (among other things). This compiles fine with:
I have an open-source Python project (called GarlicSim), and I maintain 4 different versions of it for Python versions 2.4, 2.5, 2.6 and 3.1. Yes, maybe it\'s unusual, but I like using as much feature
How do I compile a C-Python module such that it is local to another? E.g. if I have a module named \"bar\" and another module named \"mymodule\", how do I compile \"bar\" so that it imported via \"imp
I wrote a small Python extension that bundles, compiles and statically links with a small C libr开发者_开发技巧ary with one optional .S (assembler) file. Distutils\'s Extension() doesn\'t recognize th
How do I make setup.py include a file that isn\'t part of the code? (Specifically, it\'s a license file, but it could be any other thing.)