Re: howto pack python programs

2006-03-27 Thread Yaroslav Halchenko
for more information you might refer to http://www.debian.org/doc/packaging-manuals/python-policy/ which is Debian Python Policy Abstract This document describes the packaging of Python within the Debian GNU/Linux distribution and the policy requirements for packaged Python programs and modul

Re: howto pack python programs

2006-03-26 Thread Volker Grabsch
On Sun, Mar 26, 2006 at 07:15:12PM +0200, Volker Grabsch wrote: > setup(name='MyProgs tools', > version='1.0', > description='cool progs', > author='Bastian Venthur', > author_email='[EMAIL PROTECTED]', > url='http://my-cool.progs.invalid/', >

Re: howto pack python programs

2006-03-26 Thread Volker Grabsch
On Sun, Mar 26, 2006 at 04:33:37PM +0200, Bastian Venthur wrote: > Is the location /usr/share/$PACKAGE OK? Should I create the symlinks > without the py-extension, like: > /usr/bin/ex1 -> /u/s/ex1.py I think this is the better solution. A "/usr/bin/ex1.py" would take away some freedom. Maybe you

Re: howto pack python programs

2006-03-26 Thread Justin Pryzby
On Sun, Mar 26, 2006 at 04:33:37PM +0200, Bastian Venthur wrote: > Hi Mentors, > > I'm currently working on a program written in python. The source-tree > looks like this: > > foo.py > bar.py > baz.py > ex1.py > ex2.py > ex3.py > > where ex*.py are executables and the others not. My question is,

Re: howto pack python programs

2006-03-26 Thread Roberto C. Sanchez
Bastian Venthur wrote: > Hi Mentors, > > I'm currently working on a program written in python. The source-tree > looks like this: > > foo.py > bar.py > baz.py > ex1.py > ex2.py > ex3.py > > where ex*.py are executables and the others not. My question is, where > to put all these files and what s

howto pack python programs

2006-03-26 Thread Bastian Venthur
Hi Mentors, I'm currently working on a program written in python. The source-tree looks like this: foo.py bar.py baz.py ex1.py ex2.py ex3.py where ex*.py are executables and the others not. My question is, where to put all these files and what should I do with the executables? My current idea i