From fe61d92e604fcbc6f78ccb4665526f34ed13635b Mon Sep 17 00:00:00 2001 From: Claas Date: Wed, 6 Nov 2024 14:26:08 +0100 Subject: [PATCH] Revert "renamed __main__.py to cli.py, bumped version no. to v0.0.2b6" This reverts commit 03add9d2bf9ef2bc7c9b12163a84688ca091ba5c. --- docs/source/conf.py | 2 +- pyproject.toml | 5 ++--- sim_explorer/{cli.py => __main__.py} | 0 3 files changed, 3 insertions(+), 4 deletions(-) rename sim_explorer/{cli.py => __main__.py} (100%) diff --git a/docs/source/conf.py b/docs/source/conf.py index c49f059..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.2b6" +release = "0.0.2b5" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 5cfd6e9..ab3fcef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "sim-explorer" -version = "0.0.2b6" +version = "0.0.2b5" description = "Experimentation tools on top of OSP simulation models." authors = [ { name = "Siegfried Eisinger", email = "Siegfried.Eisinger@DNV.com" }, @@ -51,13 +51,12 @@ editor = [ ] [project.scripts] -sim_explorer = "sim_explorer.cli:cli_main" +sim_explorer = "sim_explorer.__main__:cli_main" [tool.setuptools] packages = [ "sim_explorer", ] -include-package-data = true [tool.black] line-length = 120 diff --git a/sim_explorer/cli.py b/sim_explorer/__main__.py similarity index 100% rename from sim_explorer/cli.py rename to sim_explorer/__main__.py