Directory Structure
Understand how to organize your Python project directories and files effectively to prepare for packaging. Learn naming conventions, placement of setup scripts, and handling multi-file modules to streamline your packaging process.
We'll cover the following...
We'll cover the following...
To start packaging your Python software, you need to get your files and directories in order. The httplib2 directory looks like this:
① Make a root directory to hold everything. Give it the same name as your Python module.
② To accomodate Windows users, your “read me” file should include a .txt extension, and it should use Windows-style carriage returns. Just because you use a fancy text editor that runs from the ...