Skip to content

Commit

Permalink
Started using setuptools_scm to populate version automatically.
Browse files Browse the repository at this point in the history
  • Loading branch information
KOLANICH committed Nov 10, 2022
1 parent 165a0c9 commit 0362680
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[build-system]
requires = ["setuptools>=61.2"]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"

[project]
name = "mdv"
version = "1.7.4"
authors = [{name = "Axiros GmbH", email = "[email protected]"}]
description = "Terminal Markdown Viewer"
keywords = [
Expand All @@ -26,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.7",
]
dependencies = ["pygments", "markdown"]
dynamic = ["version"]

[project.readme]
file = "README.md"
Expand All @@ -49,3 +49,5 @@ include-package-data = true
include = ["mdv", "mdv.*"]
namespaces = false

[tool.setuptools_scm]

0 comments on commit 0362680

Please sign in to comment.