We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c35900 commit 9142a5fCopy full SHA for 9142a5f
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "icebert-pos"
3
-version = "0.1.0"
+dynamic = ["version"] # managed by setuptools-scm
4
description = "A package for interacting with the IceBERT PoS model(s)."
5
readme = "README.md"
6
requires-python = ">=3.10,<4.0"
@@ -19,10 +19,12 @@ dev = [
19
"ruff",
20
]
21
22
+[tool.setuptools_scm]
23
+# Use git tags for versioning
24
+
25
[tool.ruff]
26
line-length = 120
27
-# "some" build system
28
[build-system]
-requires = ["setuptools"]
29
+requires = ["setuptools>=64", "setuptools-scm>=8"]
30
build-backend = "setuptools.build_meta"
0 commit comments