Skip to content

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jasursadikov committed Nov 3, 2024
1 parent 9c6202a commit 6d4894c
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["hatchling", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "mud-git"
version = "1.0.2"
dynamic = ["version"]
authors = [{ name = "Jasur Sadikov", email = "[email protected]" }]
description = "🗃️ Multi repository git utility. Manage multiple git-repositories simultaneously."
description = "Multi repository git utility. Manage multiple git-repositories simultaneously."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
Expand All @@ -16,15 +17,16 @@ classifiers = [
]
dependencies = ["prettytable"]

[project.urls]
Homepage = "https://github.com/jasursadikov/mud"
Issues = "https://github.com/jasursadikov/mud/issues"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"

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

[tool.hatch.version]
path = "src/mud/__about__.py"

[project.scripts]
mud = "mud:run"

[project.urls]
Homepage = "https://github.com/jasursadikov/mud"
Issues = "https://github.com/jasursadikov/mud/issues"

0 comments on commit 6d4894c

Please sign in to comment.