Tagged Questions

4
votes
3answers
680 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 way? I have found ...
0
votes
1answer
150 views

Including distutils in a py2app bundle

I have a script that installs Python, and then installs some modules modules with: subprocess.call("python setup.py install") It works OK on windows with py2exe. But with Mac, using py2app, I get ...