Какова наилучшая структура проекта для приложения Python?

Согласно Filesystem structure of a Python project Жан-Поля Кальдероне:

Project/
|-- bin/
|   |-- project
|
|-- project/
|   |-- test/
|   |   |-- __init__.py
|   |   |-- test_main.py
|   |   
|   |-- __init__.py
|   |-- main.py
|
|-- setup.py
|-- README

python-shell

python

directory-structure

organization

project-structure

2022-11-09T16:27:34+00:00