From 66e3c741c96a6e7ba51b9c77a3ac2e8a8b5aedac Mon Sep 17 00:00:00 2001 From: Claas Date: Tue, 5 Nov 2024 15:32:48 +0100 Subject: [PATCH] pyproject.toml : changed setuptools table from [tools.setuptools.packages.find] to [tools.setuptools], bumped version no. to v0.0.2b5 --- docs/source/conf.py | 2 +- pyproject.toml | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 7a994a6..db55797 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "Siegfried Eisinger, DNV Simulation Technology Team, SEACo project team" # The full version, including alpha/beta/rc tags -release = "0.0.2b4" +release = "0.0.2b5" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 3c048a5..ab3fcef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "sim-explorer" -version = "0.0.2b4" +version = "0.0.2b5" description = "Experimentation tools on top of OSP simulation models." authors = [ { name = "Siegfried Eisinger", email = "Siegfried.Eisinger@DNV.com" }, @@ -53,16 +53,10 @@ editor = [ [project.scripts] sim_explorer = "sim_explorer.__main__:cli_main" -[tool.setuptools.packages.find] -where = [ - ".", -] -include = [ +[tool.setuptools] +packages = [ "sim_explorer", ] -exclude = [ - "test*", -] [tool.black] line-length = 120