Re: Organising a python project

2005-09-21 Thread beza1e1
I don't know about a typical python way, but i'd like to know as well ;) Personally i have a project for my project foo, which has foo/__init__.py# with all the other modules doc/# documentation is always a good idea script/ # everything executable, which later goes into 'bin' director

Re: Organising a python project

2005-09-21 Thread baoilleach
Thanks for the info, guys. Noel -- http://mail.python.org/mailman/listinfo/python-list

Re: Organising a python project

2005-09-21 Thread baoilleach
Thanks for the info, guys. Noel -- http://mail.python.org/mailman/listinfo/python-list

Re: Organising a python project

2005-09-20 Thread Ron Adam
[EMAIL PROTECTED] wrote: > Dear all, > > Can anyone point me to a resource that describes the best way of > organising a python project? My project (gausssum.sf.net) is based > around a class, and has a GUI that allows 'easy-access' to the methods > of the class.

Re: Organising a python project

2005-09-20 Thread Scott David Daniels
bruno modulix wrote: > [EMAIL PROTECTED] wrote: > >>What is the best or typical directory structure that >>allows the easy creation of binary packages somedir: test/ test_product.py# Really do include tests product.py setup.py Look at distutils documentation. Also re

Re: Organising a python project

2005-09-20 Thread bruno modulix
[EMAIL PROTECTED] wrote: > Dear all, > > Can anyone point me to a resource that describes the best way of > organising a python project? My project (gausssum.sf.net) is based > around a class, and has a GUI that allows 'easy-access' to the methods > of the class.

Organising a python project

2005-09-19 Thread baoilleach
Dear all, Can anyone point me to a resource that describes the best way of organising a python project? My project (gausssum.sf.net) is based around a class, and has a GUI that allows 'easy-access' to the methods of the class. What is the best or typical directory structure that allow