Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import os
import sys
from importlib.metadata import version as get_version

sys.path.insert(0, os.path.abspath("../.."))

Expand All @@ -14,7 +15,7 @@
project = "FDSVismap"
copyright = "2025, Kristian Börger"
author = "Kristian Börger"
release = "0.1.3"
release = get_version("fdsvismap")

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "fdsvismap"
version = "0.1.3"
version = "0.2.0"
requires-python = ">=3.11"
description = "Tool for waypoint-based verification of visibility in the scope of performance-based fire safety assessment."
authors = [
Expand All @@ -22,6 +22,8 @@ dependencies = [
"scikit-image ~= 0.23.2",
"fdsreader ~= 1.11.5",
"pytest>=8.4.2",
"sphinx >= 7.2.6",
"sphinx-rtd-theme >= 2.0.0",
]

[project.urls]
Expand Down
Loading