Skip to content

Commit

Permalink
Update project name (#28)
Browse files Browse the repository at this point in the history
* Update project name

* Update pyproject.toml

* update .curft.json
  • Loading branch information
grst authored Oct 2, 2024
1 parent 87bb71f commit 9d8a156
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"checkout": null,
"context": {
"cookiecutter": {
"project_name": "dso",
"project_name": "dso-core",
"package_name": "dso",
"project_description": "data science operations",
"author_full_name": "Gregor Sturm",
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build-backend = "hatchling.build"
requires = [ "hatch-vcs", "hatchling" ]

[project]
name = "dso"
name = "dso-core"
description = "Data Science Operations on top of dvc"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down Expand Up @@ -71,6 +71,9 @@ scripts.dso_pandocfilter = "dso.pandocfilter:main"
[tool.hatch.version]
source = "vcs"

[tool.hatch.build.targets.wheel]
packages = [ "src/dso" ]

[tool.ruff]
line-length = 120
src = [ "src" ]
Expand Down
2 changes: 1 addition & 1 deletion src/dso/_metadata.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from importlib.metadata import version

__version__ = version("dso")
__version__ = version("dso-core")

0 comments on commit 9d8a156

Please sign in to comment.