Skip to content

Commit 5d0fb43

Browse files
committed
update readthedocs
1 parent 652a3be commit 5d0fb43

File tree

4 files changed

+39
-2
lines changed

4 files changed

+39
-2
lines changed

docs/source/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"sphinx.ext.mathjax",
2626
"sphinx.ext.viewcode",
2727
"sphinx.ext.doctest",
28-
"sphinx_rtd_theme"
28+
"sphinx_rtd_theme",
29+
"sphinxcontrib.bibtex",
2930
]
3031

3132
bibtex_bibfiles = ['refs.bib']

docs/source/index.rst

+3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ Rxn-INSIGHT can be installed from PyPI using pip (on python 3.10 or 3.11):
1919

2020
Please cite the Rxn-INSIGHT paper, if you use it in your own work.
2121

22+
.. footbibliography::
23+
2224
.. toctree::
2325
:maxdepth: 2
2426
:caption: Contents
2527

28+
installation
2629
modules
2730

2831

docs/source/installation.rst

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.. _installation:
2+
3+
Installation
4+
============
5+
6+
Rxn-INSIGHT can be installed from PyPI via pip or directly from the GitHub repository.
7+
8+
Option 1: Installing from PyPI using pip
9+
----------------------------------------
10+
.. code-block::
11+
12+
conda create -n rxn-insight python=3.11
13+
conda activate rxn-insight
14+
pip install rxn-insight
15+
16+
.. note::
17+
Currently only python 3.10 and python 3.11 are supported.
18+
19+
Option 2: Installing from source using pip
20+
------------------------------------------
21+
.. code-block::
22+
23+
conda create -n rxn-insight python=3.11
24+
conda activate rxn-insight
25+
git clone https://github.com/mrodobbe/Rxn-INSIGHT.git
26+
cd Rxn-INSIGHT
27+
pip install -e .
28+
29+
.. note::
30+
You can also use this option to install additional optional dependencies for development purposes,
31+
which are required to run the tests and build the docs by running ``pip install -e ".[test,doc]"``.
32+

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies = [
1919
"openpyxl",
2020
"ipykernel",
2121
"sphinx-rtd-theme",
22+
"sphinxcontrib-bibtex",
2223
]
2324
authors = [
2425
{name = "Maarten R. Dobbelaere", email = "[email protected]"}
@@ -40,7 +41,7 @@ dynamic = ["version"]
4041
[project.urls]
4142
source = "https://github.com/mrodobbe/rxn-insight"
4243
tracker = "https://github.com/mrodobbe/rxn-insight/issues"
43-
# documentation = "https://rxn-insight.readthedocs.io"
44+
documentation = "https://rxn-insight.readthedocs.io"
4445

4546
[project.optional-dependencies]
4647
test = [

0 commit comments

Comments
 (0)