Skip to content

Commit 674ead7

Browse files
Merge pull request #592 from tbloron/fix/pyproject
Fix pyproject.toml
2 parents ff8722b + b89d5f8 commit 674ead7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "shapash"
7-
version = "2.7.0"
7+
version = "2.7.1"
88
authors = [
99
{name = "Yann Golhen"},
1010
{name = "Sebastien Bidault"},
@@ -86,14 +86,14 @@ all = ["shapash[dev, test, mypy, ruff, report, xgboost, lightgbm, catboost, lime
8686
Homepage = "https://github.com/MAIF/shapash"
8787

8888
[tool.setuptools]
89-
package-dir = {"" = "shapash"}
89+
package-dir = {"" = "."}
9090

9191
[tool.setuptools.packages.find]
92-
where = ["shapash"]
92+
where = ["."]
9393

9494

9595
[tool.setuptools.package-data]
96-
"shapash" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"]
96+
"*" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"]
9797

9898
[tool.pytest.ini_options]
9999
pythonpath = ["."]

shapash/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (2, 6, 0)
1+
VERSION = (2, 7, 1)
22

33
__version__ = ".".join(map(str, VERSION))

0 commit comments

Comments
 (0)