Tagged Questions

1
vote
2answers
50 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 …
2
votes
1answer
30 views

Packaging resources with setuptools/distribute

I'm developing an Python egg that has several .txt dependencies (they're templates used to generate files by the egg itself), and I'm struggling to get those dependencies copied to …
0
votes
0answers
28 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 …
0
votes
1answer
26 views

Introduction/tutorial to `pkg_resources`

I heard about Distribute's pkg_resources. I want it to organize resources such as images in my project. Is there a good tutorial on how to use it?
1
vote
2answers
34 views

How to check licence of third-party jars

We distribute a number of third-party jars with our product. Is there any way I can analyse or perform a lookup on each jar in order to determine its license - e.g. CDDL v1.0, Ap …
8
votes
7answers
420 views

Shipping Closed-Source Application for Linux

What are some methods I can use to ship a closed-source application for linux? At the moment the application links against a few libraries (WxWidgets, GraphcisMagic, Crypto++, et …
0
votes
0answers
91 views

media server: distributing tv tuner stream to multiple clients

Hi all, I am using a tv tuner (hauppage 1600) that is shows up as a character device (/dev/video0). I normally open this device using VLC and it displays cable TV. 1st problem) …
6
votes
8answers
202 views

Distribute a application to the public so they can compile, without revealing the source

I have a proprietary application I would like to hand out to a few people for testing, except we do not want to reveal the source to them. The application is written in C++ for Lin …
-1
votes
6answers
127 views

What is the Process to distribute the IPhone apps to end users.

What is the Process to distribute the IPhone apps to end users.
0
votes
2answers
81 views

Distributing loadable builtin bash modules

I've written a built-in for bash which modifies the 'cd' command, a requirement for my software. Is there a way to actually distribute a loadable independently of bash itself? I'd …