-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Samuel Burbulla
committed
Nov 20, 2023
1 parent
4259e53
commit e6e20e6
Showing
18 changed files
with
43 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,9 +68,6 @@ instance/ | |
# Scrapy | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
# Documentation | ||
|
||
## Steps to build documentation | ||
|
||
1. Build and install package from source. | ||
1. Install package from source and install dependencies. | ||
```bash | ||
cd ./continuity/ | ||
pip install -e . | ||
pip install sphinx sphinx_book_theme sphinx_copybutton | ||
pip install -r docs/requirements.txt | ||
``` | ||
|
||
2. Generate documentation from your docstrings. | ||
2. Build documentation. | ||
```bash | ||
cd docs/ | ||
sphinx-apidoc -f -o ./source ../src/continuity | ||
mkdocs build | ||
``` | ||
3. Build the documentation | ||
```bash | ||
make clean && make html | ||
``` | ||
4. You can now view your documentation under `docs/build/html/index.html`. | ||
|
||
3. View your documentation opening `site/index.html`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
About | ||
========== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Modules | ||
======= | ||
|
||
::: continuity.data.dataset.DataSet |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Continuity | ||
========== | ||
|
||
Mapping continuous functions with neural networks. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Installation | ||
============ | ||
|
||
``` | ||
git clone https://github.com/aai-institute/Continuity.git | ||
cd Continuity | ||
pip install -e . | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
myst-nb==0.13.2 | ||
Sphinx==4.1.2 | ||
sphinx-book-theme==0.3.2 | ||
sphinx-copybutton>=0.5.0 | ||
mkdocs | ||
mkdocstrings |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
site_name: Continuity | ||
nav: | ||
- Home: index.md | ||
- Installation: installation.md | ||
- Documentation: documentation.md | ||
- About: about.md | ||
theme: | ||
name: readthedocs | ||
locale: "en" | ||
logo: img/logo.png | ||
|
||
plugins: | ||
- search | ||
- mkdocstrings |