Skip to content

Commit

Permalink
Merge pull request #592 from tbloron/fix/pyproject
Browse files Browse the repository at this point in the history
Fix pyproject.toml
  • Loading branch information
guillaume-vignal authored Oct 11, 2024
2 parents ff8722b + b89d5f8 commit 674ead7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down Expand Up @@ -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 = ["."]
Expand Down
2 changes: 1 addition & 1 deletion shapash/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (2, 6, 0)
VERSION = (2, 7, 1)

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

0 comments on commit 674ead7

Please sign in to comment.