File tree Expand file tree Collapse file tree 4 files changed +10
-13
lines changed Expand file tree Collapse file tree 4 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 11import os
22import sys
33sys .path .insert (0 , os .path .abspath ('../src/epidemik/' ))
4+ import epidemik
45
56# Configuration file for the Sphinx documentation builder.
67#
1112# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1213
1314project = '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__
1718
1819# -- General configuration ---------------------------------------------------
1920# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
3334html_theme = 'sphinx_rtd_theme'
3435html_static_path = ['_static' ]
3536html_theme_options = {
36- 'analytics_id' : 'G-XXXXXXXXXX ' , # Provided by Google in your dashboard
37+ 'analytics_id' : 'G-HKWS10TRJ1 ' ,
3738 'analytics_anonymize_ip' : False ,
3839 'logo_only' : False ,
3940 'display_version' : True ,
4041 'prev_next_buttons_location' : 'bottom' ,
41- 'style_external_links' : False ,
42+ 'style_external_links' : True ,
4243 'vcs_pageview_mode' : '' ,
4344 'style_nav_header_background' : 'white' ,
4445 # 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
71sphinx
82sphinx_rtd_theme
3+ epidemik
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dynamic = ["version"]
44authors = [
55 {
name =
" Bruno Gonçalves" ,
email =
" [email protected] " },
66]
7- description = " A pakage to simulate compartmental epidemic models"
7+ description = " A package to simulate compartmental epidemic models"
88readme = " README.md"
99requires-python = " >=3.8"
1010classifiers = [
@@ -23,6 +23,7 @@ dependencies = [
2323[project .urls ]
2424Homepage = " https://github.com/DataForScience/epidemik"
2525Issues = " https://github.com/DataForScience/epidemik/issues"
26+ Documentation = " https://epidemik.readthedocs.io/"
2627
2728[build-system ]
2829requires = [" setuptools>=61.0" ]
Original file line number Diff line number Diff line change 1212from .NetworkEpiModel import NetworkEpiModel
1313from .MetaEpiModel import MetaEpiModel
1414
15- __version__ = "0.0.20 "
15+ __version__ = "0.0.21 "
You can’t perform that action at this time.
0 commit comments