diff --git a/pyproject.toml b/pyproject.toml index 58b18e4..a82b1aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,14 @@ [tool.poetry] -name = "rwa" -version = "0.9.4" +name = "rwa-python" +version = "0.9.5" description = "HDF5-based serialization library for Python datatypes" authors = ["François Laurent "] license = "Apache 2.0" readme = "README.md" +packages = [{ include="rwa", from="." }] [tool.poetry.dependencies] -python = ">=3.8,<3.14" +python = ">=3.8,<4.0" six = "^1.16.0" numpy = ">=0" scipy = ">=0" diff --git a/setup.py b/setup.py index 9aa2098..f21c513 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name = 'rwa-python', - version = '0.9.4', + version = '0.9.5', description = 'HDF5-based serialization library for Python datatypes', long_description = long_description, url = 'https://github.com/DecBayComp/RWA-python',