Skip to content
Snippets Groups Projects
Commit 540945e2 authored by Karim Ahmed's avatar Karim Ahmed
Browse files

exclude some modules from gen_files

parent 75d22342
No related branches found
No related tags found
1 merge request!820[Documentation] Introduce mkdocs and add new documentation pages
...@@ -19,9 +19,7 @@ for path in sorted(Path("src").rglob("*.py")): ...@@ -19,9 +19,7 @@ for path in sorted(Path("src").rglob("*.py")):
if parts[-1] == "__init__": if parts[-1] == "__init__":
parts = parts[:-1] parts = parts[:-1]
print("init parts:", parts) print("init parts:", parts)
if parts[-1] == "calcat_interface": if parts[-1] in ["notebooks", "settings", "calcat_interface", "restful_config", "__main__"]:
continue
elif parts[-1] == "__main__":
continue continue
nav[parts] = doc_path.as_posix() nav[parts] = doc_path.as_posix()
......
...@@ -4,18 +4,6 @@ European XFEL Offline Calibration ...@@ -4,18 +4,6 @@ European XFEL Offline Calibration
The European XFEL Offline Calibration (pyCalibration) is a python package that consists of different services, responsible for applying most of the offline calibration and characterization for the detectors. The European XFEL Offline Calibration (pyCalibration) is a python package that consists of different services, responsible for applying most of the offline calibration and characterization for the detectors.
Documentation contents:
- [Overview](overview.md) Offline calibration overview - [Overview](overview.md) Offline calibration overview
- [Installation](development/installation.md) How to install pycalibration - [Installation](development/installation.md) How to install pycalibration
- [Configuration](development/configuration.md) xfel-calibrate CLI configuration
- [Development](development/workflow.md) How to start developing offline calibration notebooks
- [How to write a notebook](how_to_write_xfel_calibrate_notebook_NBC.ipynb) A guide on how to arrange notebook's cells.
- [available_notebooks](available_notebooks.md) The current available production notebooks.
- [calibration_database](calibration_database.md) The calibration database.
\ No newline at end of file
...@@ -101,7 +101,6 @@ nav: ...@@ -101,7 +101,6 @@ nav:
- Advanced topics: development/advanced.md - Advanced topics: development/advanced.md
- Code Reference: - Code Reference:
- CALCAT Interface: code_reference/calcat_interface.md - CALCAT Interface: code_reference/calcat_interface.md
- Calibration Tools: code_reference/cal_tools.md
- Code Reference: reference/ - Code Reference: reference/
- Reference: - Reference:
- FAQ: references/faq.md - FAQ: references/faq.md
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment