Skip to content

Commit 897c23c

Browse files
committed
added pages
1 parent e8b5b10 commit 897c23c

File tree

9 files changed

+62
-8
lines changed

9 files changed

+62
-8
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "countoscope"]
22
path = countoscope
3-
url = git@github.com:Countoscope/countoscope.git
3+
url = https://github.com/Countoscope/countoscope.git

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
Countoscope documentation
22
=========================
33

4-
54
How to
65
------
76

8-
Close the repository by typing in a terminal:
7+
Close the repository with its submodules by typing in a terminal:
98

109
.. code-block:: bash
1110
12-
git clone https://github.com/Countoscope/countoscope.github.io.git
11+
git clone https://github.com/Countoscope/countoscope.github.io.git --recurse-submodules
1312
1413
To build the documentation localy, go to the docs/ folder and type:
1514

1615
.. code-block:: bash
1716
1817
make html
1918
20-
The generated documentation can be accessed from the docs/build folder.
19+
The generated documentation can be accessed from the docs/build/ folder.

docs/source/conf.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
1+
#!/usr/bin/env python
2+
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
3+
#
4+
# Copyright (c) 2024 Authors and contributors
5+
# (see the AUTHORS.rst file for the full list of names)
6+
#
7+
# Released under MIT Licence
8+
#
19
# Configuration file for the Sphinx documentation builder.
210

311
project = 'Countoscope'
4-
copyright = '2024, Mackay et al.'
5-
author = 'Mackay et al.'
12+
copyright = 'MIT Licence'
13+
author = 'see the AUTHORS.rst fil'
614
release = '0.0.1'
715

8-
extensions = []
16+
extensions = [
17+
'sphinx.ext.autodoc',
18+
]
919

1020
templates_path = ['_templates']
1121
exclude_patterns = []

docs/source/index.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,13 @@ Indices and tables
1111
* :ref:`genindex`
1212
* :ref:`modindex`
1313
* :ref:`search`
14+
15+
.. toctree::
16+
:maxdepth: 2
17+
:hidden:
18+
19+
modules/TRAJECTORY
20+
modules/BOX
21+
modules/SORTING
22+
modules/COUNTOSCOPE
23+
modules/UTILITIES

docs/source/modules/BOX.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Box
2+
===
3+
4+
.. automodule:: countoscope.Box
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/modules/COUNTOSCOPE.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Countoscope
2+
===========
3+
4+
.. automodule:: countoscope.Countoscope
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/modules/SORTING.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Sorting
2+
=======
3+
4+
.. automodule:: countoscope.Sorting
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/modules/TRAJECTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Trajectory
2+
==========
3+
4+
.. automodule:: countoscope.Trajectory
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/modules/UTILITIES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Utilities
2+
=========
3+
4+
.. automodule:: countoscope.util
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

0 commit comments

Comments
 (0)