|
3 | 3 | import os |
4 | 4 | import sys |
5 | 5 |
|
| 6 | +src_dir = os.path.abspath(os.path.join('..', 'src')) |
| 7 | +sys.path.insert(0, src_dir) |
| 8 | +import gpsea |
6 | 9 |
|
7 | 10 | # -- General configuration ------------------------------------------------ |
8 | 11 |
|
|
16 | 19 | # -- General configuration --------------------------------------------------- |
17 | 20 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration |
18 | 21 |
|
19 | | -src_dir = os.path.abspath(os.path.join('..', 'src')) |
20 | | -sys.path.insert(0, src_dir) |
21 | 22 | extensions = [ |
22 | 23 | 'sphinx.ext.autodoc', |
23 | 24 | 'sphinx.ext.autosummary', |
|
62 | 63 | # built documents. |
63 | 64 | # |
64 | 65 | # The short X.Y version. |
65 | | -version = u'0.9' |
| 66 | +#version = u'' |
66 | 67 | # The full version, including alpha/beta/rc tags. |
67 | | -release = u'0.9.9-dev0' |
| 68 | +release = gpsea.__version__ |
68 | 69 |
|
69 | 70 | # The language for content autogenerated by Sphinx. Refer to documentation |
70 | 71 | # for a list of supported languages. |
|
207 | 208 | "python": ("https://docs.python.org/3/", None), |
208 | 209 | "hpotk": ("https://ielis.github.io/hpo-toolkit/stable/", None), |
209 | 210 | "pandas": ("https://pandas.pydata.org/pandas-docs/version/2.0.0/", None), |
| 211 | + "phenopacket-store-toolkit": ("https://monarch-initiative.github.io/phenopacket-store-toolkit/stable/", None), |
210 | 212 | "requests": ("https://docs.python-requests.org/en/stable/", None), |
211 | 213 | "scipy": ("https://docs.scipy.org/doc/scipy-1.11.0/", None), |
| 214 | + "stairval": ("https://ielis.github.io/stairval/stable/", None), |
212 | 215 | "statsmodels": ("https://www.statsmodels.org/stable/", None), |
213 | 216 | "numpy": ("https://numpy.org/doc/stable/", None), |
214 | 217 | } |
|
0 commit comments