From b89d5f88bdecb818c7e3dcb0e3eadd7669804f9c Mon Sep 17 00:00:00 2001 From: Thierry Loron Date: Fri, 11 Oct 2024 10:14:36 +0200 Subject: [PATCH] chore: fix pyproject.toml --- pyproject.toml | 8 ++++---- shapash/__version__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index aaff9869..c521e9f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "shapash" -version = "2.7.0" +version = "2.7.1" authors = [ {name = "Yann Golhen"}, {name = "Sebastien Bidault"}, @@ -86,14 +86,14 @@ all = ["shapash[dev, test, mypy, ruff, report, xgboost, lightgbm, catboost, lime Homepage = "https://github.com/MAIF/shapash" [tool.setuptools] -package-dir = {"" = "shapash"} +package-dir = {"" = "."} [tool.setuptools.packages.find] -where = ["shapash"] +where = ["."] [tool.setuptools.package-data] -"shapash" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"] +"*" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"] [tool.pytest.ini_options] pythonpath = ["."] diff --git a/shapash/__version__.py b/shapash/__version__.py index 639838f2..01723d8e 100644 --- a/shapash/__version__.py +++ b/shapash/__version__.py @@ -1,3 +1,3 @@ -VERSION = (2, 6, 0) +VERSION = (2, 7, 1) __version__ = ".".join(map(str, VERSION))