Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
bmtgoncalves committed Apr 15, 2024
1 parent bc4060f commit 08394e3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
11 changes: 6 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('../src/epidemik/'))
import epidemik

# Configuration file for the Sphinx documentation builder.
#
Expand All @@ -11,9 +12,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'epidemik'
copyright = '2024, Bruno Goncalves'
author = 'Bruno Goncalves'
release = '0.0.20'
copyright = '2024, Bruno Gonçalves'
author = 'Bruno Gonçalves'
release = epidemik.__version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand All @@ -33,12 +34,12 @@
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_theme_options = {
'analytics_id': 'G-XXXXXXXXXX', # Provided by Google in your dashboard
'analytics_id': 'G-HKWS10TRJ1',
'analytics_anonymize_ip': False,
'logo_only': False,
'display_version': True,
'prev_next_buttons_location': 'bottom',
'style_external_links': False,
'style_external_links': True,
'vcs_pageview_mode': '',
'style_nav_header_background': 'white',
# Toc options
Expand Down
7 changes: 1 addition & 6 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
matplotlib>=3.3
networkx>=3
numpy>=1.2
pandas>=2.0
scipy>=1.10
tqdm>=4
sphinx
sphinx_rtd_theme
epidemik
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]
authors = [
{ name="Bruno Gonçalves", email="[email protected]" },
]
description = "A pakage to simulate compartmental epidemic models"
description = "A package to simulate compartmental epidemic models"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
Expand All @@ -23,6 +23,7 @@ dependencies = [
[project.urls]
Homepage = "https://github.com/DataForScience/epidemik"
Issues = "https://github.com/DataForScience/epidemik/issues"
Documentation = "https://epidemik.readthedocs.io/"

[build-system]
requires = ["setuptools>=61.0"]
Expand Down
2 changes: 1 addition & 1 deletion src/epidemik/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
from .NetworkEpiModel import NetworkEpiModel
from .MetaEpiModel import MetaEpiModel

__version__ = "0.0.20"
__version__ = "0.0.21"

0 comments on commit 08394e3

Please sign in to comment.