Update Home authored by Steinar Hjellvik's avatar Steinar Hjellvik
This wiki contains developer related information for working with the OSDU CLI. This wiki contains developer related information for working with the OSDU CLI.
See the menu to the right for further details. See the menu to the right for further details.
## Repository Structure ## Repository Structure
```text ```text
├── .vscode/ <- Visual Studio Code configuration ├── .vscode/ <- Visual Studio Code configuration
├── docs/ <- Documentation files ├── docs/ <- Documentation files
├── src ├── scripts/ <- Script to verify license
| └── osducli/ <- CLI source code (see Code Structure) ├── src
├── tests/ <- Unit tests | └── osducli/ <- CLI source code (see Code Structure)
├─ .flake8 <- Flake8 linting configuration ├── tests/ <- Unit tests
├─ .gitignore <- Paths that git should not track ├─ .flake8 <- Flake8 linting configuration
├─ LICENSE.md <- License information ├─ .gitignore <- Paths that git should not track
├─ nose2.cfg <- Nose2 testing configuration ├─ gitlab-ci.yml <- Gitlab pipeline configuration
├─ pylintrc <- Pylint linting configuration ├─ LICENSE.md <- License information
├─ README.md <- Main readme document ├─ pylintrc <- Pylint linting configuration
├── README.rst <- Readme with change information included in package ├─ pyproject.toml <- Project definition file
├── requirements-dev.txt <- Package dependencies for development ├─ README.md <- Main readme document
├── setup.py <- Package distribution configuration ├── README.rst <- Readme with change information included in package
└── tox.ini <- tox configuration multi python isolated testing └── tox.ini <- tox configuration multi python isolated testing
``` ```
\ No newline at end of file