I have created a project in python and i want to put all the files in a standard format inside a folder ie I want to know the standard project structure of python.
My project contains following files:
(1) main.py
(2) source_code1.py
(3) source_code2.py
(4) setup.py
(5) phpfile1.php
(6) phpfile2.php
(7) image1.png
(8) image2.png
(9) README.txt
(10) CHANGES.txt
(11) LICENSE.txt
(12) test1.py
(13) test2.py
Can anyone tell me, which file to put in which folder ?
NOTE: I have read almost all the related questions of project structure in python but not found where to put image files and other code files ends with different extension like .php , .html etc
Is there any standard way of project structuring in python ?