1
vote
5answers
96 views
Packaging a Mac app for distribution
What's the preferred way to create a distributable file for Mac OS: dmg or pkg?
13
votes
4answers
108 views
How do I get started writing a module for CPAN?
Right now, I have my own homegrown testing harness/directory structure/support doc strucure/distribution tools for my libraries. However, reading the blog post Write your code lik …
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' …
1
vote
2answers
49 views
Including package data with Distribute
I'm trying to use Distribute for my project's setup.py. I want it to include all the files in the package folder, which are text and image files, but not .pyc files of course. I re …
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, …
3
votes
6answers
81 views
How to distribute native perl scripts without custom module overhead?
How can someone distribute native (non-"compiled/perl2exe/...") Perl scripts without forcing users to be aware of the custom (non-CPAN) modules that the scripts needs in order to r …
0
votes
1answer
77 views
How can I make Module::Build install both X and X::Y?
If I have a distribution with X and X::Y also in it, how do I make Module::Build install both the modules? I have put X.pm in lib, written a file Build.PL with the line
my $build …
0
votes
2answers
68 views
will my iphone app get knocked back for distribution if it is designed for 3Gs
i have an app that runs like a dream on a 3gs, but can be a bit glitchy on the ipod touch, anyone have any similiar experiences, with distribution?
The app still works, on the ipo …
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 …
2
votes
1answer
47 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
Iphone Standard Program [closed]
I am new to iPhone development. The following is my requirements.
In-house proprietary iPhone application to be deployed to 10 iTouch devices.
Distribution via ad-hoc mode ONLY
…
6
votes
12answers
363 views
Scale numbers to be <= 255?
I have cells for whom the numeric value can be anything between 0 and Integer.MAX_VALUE. I would like to color code these cells correspondingly.
If the value = 0, then r = 0. If …
6
votes
2answers
130 views
How can I install a CPAN module that is in the latest perl, without installing the new perl?
I'd like to install a Perl module (in this case, FindBin), but since it is included in the perl5.10.1 distribution, cpan wants to install perl5.10 for me. Is there any way of inst …
0
votes
1answer
42 views
iphone app submission with other developers binary
Hey All.
I am making an app that needs to be released by the client.
Am I able to build and sign the final binary with my distribution certificate and send it to the client to up …
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 …
