Skip to content

Commit

Permalink
Let setuptools-scm find version during build
Browse files Browse the repository at this point in the history
Based on latest Git version tag and any later changes, similar to 'git describe'.
  • Loading branch information
jodal committed Mar 1, 2024
1 parent 133f381 commit 5e9dd86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -5,7 +5,6 @@ build-backend = "setuptools.build_meta"

[project]
name = "Mopidy-MPD"
version = "4.0.0a1"
description = "Mopidy extension for controlling Mopidy from MPD clients"
readme = "README.rst"
requires-python = ">= 3.11"
Expand All @@ -21,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
dynamic = ["version"]
dependencies = [
"mopidy >= 4.0.0a1",
"pygobject >= 3.42",
Expand Down

1 comment on commit 5e9dd86

@kingosticks
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 for making it fool-proof!

Please sign in to comment.