File tree 4 files changed +10
-13
lines changed
4 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
2
import sys
3
3
sys .path .insert (0 , os .path .abspath ('../src/epidemik/' ))
4
+ import epidemik
4
5
5
6
# Configuration file for the Sphinx documentation builder.
6
7
#
11
12
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
12
13
13
14
project = 'epidemik'
14
- copyright = '2024, Bruno Goncalves '
15
- author = 'Bruno Goncalves '
16
- release = '0.0.20'
15
+ copyright = '2024, Bruno Gonçalves '
16
+ author = 'Bruno Gonçalves '
17
+ release = epidemik . __version__
17
18
18
19
# -- General configuration ---------------------------------------------------
19
20
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
33
34
html_theme = 'sphinx_rtd_theme'
34
35
html_static_path = ['_static' ]
35
36
html_theme_options = {
36
- 'analytics_id' : 'G-XXXXXXXXXX ' , # Provided by Google in your dashboard
37
+ 'analytics_id' : 'G-HKWS10TRJ1 ' ,
37
38
'analytics_anonymize_ip' : False ,
38
39
'logo_only' : False ,
39
40
'display_version' : True ,
40
41
'prev_next_buttons_location' : 'bottom' ,
41
- 'style_external_links' : False ,
42
+ 'style_external_links' : True ,
42
43
'vcs_pageview_mode' : '' ,
43
44
'style_nav_header_background' : 'white' ,
44
45
# Toc options
Original file line number Diff line number Diff line change 1
- matplotlib >= 3.3
2
- networkx >= 3
3
- numpy >= 1.2
4
- pandas >= 2.0
5
- scipy >= 1.10
6
- tqdm >= 4
7
1
sphinx
8
2
sphinx_rtd_theme
3
+ epidemik
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dynamic = ["version"]
4
4
authors = [
5
5
{
name =
" Bruno Gonçalves" ,
email =
" [email protected] " },
6
6
]
7
- description = " A pakage to simulate compartmental epidemic models"
7
+ description = " A package to simulate compartmental epidemic models"
8
8
readme = " README.md"
9
9
requires-python = " >=3.8"
10
10
classifiers = [
@@ -23,6 +23,7 @@ dependencies = [
23
23
[project .urls ]
24
24
Homepage = " https://github.com/DataForScience/epidemik"
25
25
Issues = " https://github.com/DataForScience/epidemik/issues"
26
+ Documentation = " https://epidemik.readthedocs.io/"
26
27
27
28
[build-system ]
28
29
requires = [" setuptools>=61.0" ]
Original file line number Diff line number Diff line change 12
12
from .NetworkEpiModel import NetworkEpiModel
13
13
from .MetaEpiModel import MetaEpiModel
14
14
15
- __version__ = "0.0.20 "
15
+ __version__ = "0.0.21 "
You can’t perform that action at this time.
0 commit comments