$ tree myproject
myproject
├── bin
│ ├── about
│ ├── all
│ ├── build-compile
│ ├── build-dependencies
│ ├── build-envvars
│ ├── deploy-dev
│ ├── deploy-preprod
│ ├── deploy-prod
│ ├── deploy-test
│ ├── image-build
│ ├── image-compile
│ ├── image-push
│ ├── image-remove
│ ├── report
│ ├── test-all
│ ├── test-codestyle
│ ├── test-coverage
│ ├── test-documentation
│ ├── test-formatter
│ ├── test-functional
│ ├── test-integration
│ ├── test-lint
│ ├── test-load
│ ├── test-mutation
│ ├── test-regression
│ ├── test-security
│ ├── test-smoke
│ ├── test-static
│ ├── test-typing
│ ├── test-ui
│ └── test-unit
├── contrib
├── data
├── dist
├── docs
│ ├── api.md
│ ├── install.md
│ └── usage.md
├── src
│ ├── myproject
│ │ └── user.py
│ └── __main__.py
├── tests
│ ├── main.rst
│ └── test_user.py
├── LICENSE.md
├── README.md
├── TODO.md
├── pyproject.toml
├── requirements.lock
└── requirements.txt