File tree 4 files changed +39
-2
lines changed
4 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 25
25
"sphinx.ext.mathjax" ,
26
26
"sphinx.ext.viewcode" ,
27
27
"sphinx.ext.doctest" ,
28
- "sphinx_rtd_theme"
28
+ "sphinx_rtd_theme" ,
29
+ "sphinxcontrib.bibtex" ,
29
30
]
30
31
31
32
bibtex_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):
19
19
20
20
Please cite the Rxn-INSIGHT paper, if you use it in your own work.
21
21
22
+ .. footbibliography ::
23
+
22
24
.. toctree ::
23
25
:maxdepth: 2
24
26
:caption: Contents
25
27
28
+ installation
26
29
modules
27
30
28
31
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 = [
19
19
" openpyxl" ,
20
20
" ipykernel" ,
21
21
" sphinx-rtd-theme" ,
22
+ " sphinxcontrib-bibtex" ,
22
23
]
23
24
authors = [
24
25
{
name =
" Maarten R. Dobbelaere" ,
email =
" [email protected] " }
@@ -40,7 +41,7 @@ dynamic = ["version"]
40
41
[project .urls ]
41
42
source = " https://github.com/mrodobbe/rxn-insight"
42
43
tracker = " https://github.com/mrodobbe/rxn-insight/issues"
43
- # documentation = "https://rxn-insight.readthedocs.io"
44
+ documentation = " https://rxn-insight.readthedocs.io"
44
45
45
46
[project .optional-dependencies ]
46
47
test = [
You can’t perform that action at this time.
0 commit comments