Skip to content

Project structure

Bazyli Polednia edited this page Mar 17, 2021 · 3 revisions
+---.github
│   ├── pull_request_template.md  --> template for new pull requests
│   └── workflows          
│       └── main.yml  --> config for GitHub Actions
|
+---examples  --> directory for code examples with simple usage of our code
|       README.md
|
+---robomaster  --> main directory for robomaster project module
|       __init__.py
|
|---tests  --> unit and system tests
|       __init__.py
|
|   .gitignore
|   .pre-commit-config.yaml  --> config for pre-commit
|   pyproject.toml  --> config for black
|   README.md
|   requirements-dev.txt
|   requirements-test.txt
|   requirements.txt
\   setup.cfg  --> config for flake8 and mypy

Clone this wiki locally