Skip to content

Commit 37dc1fa

Browse files
committed
Arange documentation pages #11
1 parent d8eaf45 commit 37dc1fa

14 files changed

+111
-25
lines changed

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build:
44
tools:
55
python: "3.8"
66
sphinx:
7-
configuration: docs/conf.py
7+
configuration: docs/source/conf.py
88
python:
99
install:
1010
- requirements: requirements.txt

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing Guidelines
1+
# Guidelines
22

33
First, **thank you** for contributing!
44

docs/conf.py

-22
This file was deleted.

docs/index.rst

-1
This file was deleted.

docs/source/analysis.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
analysis module
2+
===============
3+
4+
.. automodule:: analysis
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/compute_features.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
compute\_features module
2+
========================
3+
4+
.. automodule:: compute_features
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/conf.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
#
3+
# For the full list of built-in configuration values, see the documentation:
4+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5+
6+
import os
7+
import sys
8+
sys.path.insert(0, os.path.abspath('../../src/'))
9+
10+
11+
# -- Project information -----------------------------------------------------
12+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
13+
14+
project = 'tracksegnet'
15+
copyright = '2024, H. Kabbech'
16+
author = 'H. Kabbech'
17+
release = '1.0.0'
18+
19+
# -- General configuration ---------------------------------------------------
20+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
21+
22+
extensions = ["myst_parser"]
23+
24+
templates_path = ['_templates']
25+
exclude_patterns = []
26+
27+
28+
29+
# -- Options for HTML output -------------------------------------------------
30+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
31+
32+
html_theme = 'sphinx_rtd_theme'
33+
html_static_path = ['_static']

docs/source/contributing.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```{include} ../../CONTRIBUTING.md
2+
```

docs/source/experimental_tracks.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
experimental\_tracks module
2+
===========================
3+
4+
.. automodule:: experimental_tracks
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/generate_lstm_model.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
generate\_lstm\_model module
2+
============================
3+
4+
.. automodule:: generate_lstm_model
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/index.rst

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
.. tracksegnet documentation master file, created by
2+
sphinx-quickstart on Fri Feb 16 23:09:32 2024.
3+
You can adapt this file completely to your liking, but it should at least
4+
contain the root `toctree` directive.
5+
6+
TrackSegNet's documentation!
7+
============================
8+
9+
.. toctree::
10+
:maxdepth: 1
11+
:caption: Readme:
12+
13+
readme
14+
15+
.. toctree::
16+
:maxdepth: 1
17+
:caption: Modules:
18+
19+
analysis
20+
compute_features
21+
experimental_tracks
22+
generate_lstm_model
23+
simulate_tracks
24+
utils
25+
26+
.. toctree::
27+
:maxdepth: 1
28+
:caption: Contributing:
29+
30+
contributing

docs/source/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```{include} ../../README.md
2+
```

docs/source/simulate_tracks.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
simulate\_tracks module
2+
=======================
3+
4+
.. automodule:: simulate_tracks
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/utils.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
utils module
2+
============
3+
4+
.. automodule:: utils
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

0 commit comments

Comments
 (0)