2
votes
2answers
68 views
How to do additional work in setup.py?
I'm having a hard time understanding how exactly the distutils work.t
Often one has to do additional work than just the default actions that distutils provide. For example:
Cre …
0
votes
1answer
51 views
Weird PyPI authentication behavior
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' …
0
votes
0answers
26 views
Python: Error in uploading an MSI distribution to the cheeseshop
I'm trying to upload an MSI binary distribution of my project to the cheeseshop. I'm doing setup.py bdist_msi register upload. It builds the project and the setup script finishes, …
0
votes
1answer
43 views
Nested Python C Extensions/Modules?
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 impo …
0
votes
0answers
27 views
`pkg_resources.require()` doesn’t see wxPython
I'm using Distribute's pkg_resources.require() in my project to check if prerequisites are installed on the user's machine. One of the prerequisites is wxPython. But when I try pkg …
6
votes
3answers
269 views
Don’t touch my shebang!
One thing I hate about distutils (I guess he is the evil who does this) is that it changes the shebang line. In other words, the more rational and environment-vars decided scriptur …
1
vote
3answers
80 views
How to trigger post-build using setuptools/distutils
I am building an application using py2app/setuptools, so once it creates application bundle I want to take some action on dist folder e.g. create a installer/upload it.
Is there a …
0
votes
4answers
43 views
Custom distutils commands
I have a library called "example" that I'm installing into my global site-packages directory. However, I'd like to be able to install two versions, one for production and one for …
1
vote
6answers
90 views
What if setuptools isn’t installed?
I'm just learning the art of writing a setup.py file for my project. I see there's lots of talk about setuptools, which is supposed to be superior to distutils. There's one thing t …
2
votes
1answer
48 views
Uploading to the cheeseshop different versions of a package for different versions of Python
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 us …
0
votes
1answer
50 views
How to pass flag to gcc in Python setup.py script?
I'm writing a Python extension in C that requires the CoreFoundation framework (among other things). This compiles fine with:
gcc -o foo foo.c -framework CoreFoundation -framework …
1
vote
3answers
333 views
Python distutils, how to get a compiler that is going to be used?
For example, I may use "python setup.py build --compiler=msvc" or "python setup.py build --compiler=mingw32"or just "python setup.py build", in which case the default compiler (say …
0
votes
1answer
30 views
Can Python’s distutils compile .S (assembly)?
I wrote a small Python extension that bundles, compiles and statically links with a small C library with one optional .S (assembler) file. Distutils's Extension() doesn't recognize …
0
votes
4answers
48 views
Customising Install location for Django (or any Python module)
I'd like to to install Django into a custom location, I've read the distutils documentation and it suggests that I should be able to do something like the following to install unde …
0
votes
2answers
79 views
What’s wrong with this `setup.py`?
I've been having problems withe getting setup.py to do the sdist thing correctly. I boiled it down to this. I have the following directory structure:
my_package\
my_subpackage …
