Skip to content

Commit

Permalink
fix dynamic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
hgloeckner committed Jan 27, 2025
1 parent 15ebeea commit 0909a52
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[project]
name = "pydropsonde"
version = "0"
repository = "https://github.com/atmdrops/pydropsonde"
documentation = "https://atmdrops.github.io/pydropsonde/"
description = "Tools to process dropsonde data"
Expand All @@ -19,6 +18,8 @@ classifiers = [
]
packages = [{include = "pydropsonde"}]
requires-python = ">3.10"
dynamic=["version"]


dependencies = [
"PyYAML",
Expand All @@ -43,6 +44,9 @@ dependencies = [
"zarr (>2.0.0,<3.0.0)",
]

[tool.poetry]
version = "0.0.0"

[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-watch = "*"
Expand All @@ -54,6 +58,10 @@ vcs = "git"
[tool.poetry.scripts]
pydropsonde = 'pydropsonde.main:main'

[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }


[tool.poetry-dynamic-versioning.files."pydropsonde/_version.py"]
persistent-substitution = true
initial-content ="""
Expand Down

0 comments on commit 0909a52

Please sign in to comment.