Skip to content

Commit

Permalink
Changed dependency manager to uv.
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Oct 12, 2024
1 parent 44eb22a commit cce9e1d
Show file tree
Hide file tree
Showing 3 changed files with 2,322 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bumpversion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Top-level package for bump-my-version."""

__version__: str = "0.27.0"
__version__ = "0.27.0"
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "bump-my-version"
Expand Down Expand Up @@ -85,11 +85,12 @@ test = [
"pytest-sugar",
]

[tool.setuptools.dynamic]
version = {attr = "bumpversion.__version__"}
[tool.hatch.version]
path = "bumpversion/__init__.py"

[tool.hatch.build.targets.wheel]
packages = ["bumpversion"]

[tool.setuptools.packages.find]
exclude = ["example*", "tests*", "docs*", "build", "tools", "site"]

[tool.coverage.run]
branch = true
Expand Down
Loading

0 comments on commit cce9e1d

Please sign in to comment.