diff --git a/pyproject.toml b/pyproject.toml index 18a84d5..3f76bbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,8 +14,7 @@ exclude = ["docs/_build"] [project] name = "fluprodia" -version = "2.2" -description = "Create beautiful fluid property diagrams using CoolProp and matplotlib" +dynamic = ["version", "description"] readme = "README.rst" authors = [ {name = "Francesco Witte", email = "tespy@witte.sh"}, diff --git a/src/fluprodia/__init__.py b/src/fluprodia/__init__.py index 123590f..9841789 100644 --- a/src/fluprodia/__init__.py +++ b/src/fluprodia/__init__.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -__version__ = '2.2' +"""Create beautiful fluid property diagrams using CoolProp and matplotlib""" + +__version__ = '3.0' from .fluid_property_diagram import FluidPropertyDiagram # noqa: F401