勉強したこと、調べたことを記録する
. ├── MANIFEST.in << バンドルするファイルのリスト ├── README.txt ├── scripts << コマンド類 │ ├── commandfile ├── setup.py << 本体 └── src << ソースルート ├── packagename << Python のパッケージ ├── __init__.py ├── echo.py ├── echolist.py ├── hoge │ ├── __init__.py │ └── echo.py ├── moduledata │ ├── goodbylist │ │ └── goodbylist.txt │ ├── hellolist.txt └── tests ├── __init__.py └── echo_test.py