Skip to content

Commit d58c32f

Browse files
committed
set version to 0.1.0b1
1 parent 43c91d9 commit d58c32f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "wannier90io"
7-
version = "0.1.0"
87
description = "A Python library for Wannier90 I/O"
98
readme = "README.md"
109
requires-python = ">=3.8"
@@ -20,6 +19,7 @@ dependencies = [
2019
"numpy",
2120
"pydantic",
2221
]
22+
dynamic=['version']
2323

2424
[project.urls]
2525
Documentation = "https://github.com/jimustafa/wannier90io-python#readme"
@@ -29,6 +29,9 @@ Source = "https://github.com/jimustafa/wannier90io-python"
2929
[tool.hatch.build]
3030
only-packages = true
3131

32+
[tool.hatch.version]
33+
path = "src/wannier90io/__about__.py"
34+
3235
[project.scripts]
3336
w90io = "wannier90io.__main__:main"
3437

src/wannier90io/__about__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1.0b1'

0 commit comments

Comments
 (0)