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
Thanks for the info, guys. Noel
--
http://mail.python.org/mailman/listinfo/python-list
Thanks for the info, guys. Noel
--
http://mail.python.org/mailman/listinfo/python-list
[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.
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
[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.
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