when i created my own libs, i created a folder inside with the name of the module.
For example, for my project bjsonrpc, inside the bjsonrpc folder i have the following: LICENSE README bjsonrpc/__init__.py bjsonrpc/connection.py bjsonrpc/exceptions.py bjsonrpc/jsonlib.py doc/Makefile doc/source/api/index.rst doc/source/conf.py doc/source/index.rst doc/source/sphinxstatic/README examples/example1-client.py examples/example1-server.py setup.py test/README test/test_main.py test/testserver1.py all the module's sources are inside bjsonrpc/bjsonrpc, so, when i package this as bjsonrpc-0.2.1, the source's parent folder is still bjsonrpc. Seems the most easy way to handle this. In other packages i did something like package-x.y.z/src/modulename/__init__.py , but i don't like very much a "src" folder for a python library. 2011/6/13 Marmoute <[email protected]>: > > On 13 juin 2011, at 17:07, deavid wrote: > >> By the way, remember that the parent directory MUST be named "soya". > > Maybe we should fix source tarball. > > _______________________________________________ > Soya-user mailing list > [email protected] > https://mail.gna.org/listinfo/soya-user > _______________________________________________ Soya-user mailing list [email protected] https://mail.gna.org/listinfo/soya-user
