File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
3132bibtex_bibfiles = ['refs.bib' ]
Original file line number Diff line number Diff line change @@ -19,10 +19,13 @@ Rxn-INSIGHT can be installed from PyPI using pip (on python 3.10 or 3.11):
1919
2020Please 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
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ dependencies = [
1919 " openpyxl" ,
2020 " ipykernel" ,
2121 " sphinx-rtd-theme" ,
22+ " sphinxcontrib-bibtex" ,
2223]
2324authors = [
2425 {name = " Maarten R. Dobbelaere" , email = " mrodobbe.dobbelaere@ugent.be" }
@@ -40,7 +41,7 @@ dynamic = ["version"]
4041[project .urls ]
4142source = " https://github.com/mrodobbe/rxn-insight"
4243tracker = " 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 ]
4647test = [
You can’t perform that action at this time.
0 commit comments