fix: add version configuration for hatch
- Add tool.hatch.version configuration in pyproject.toml - Create __version__.py with initial version 0.1.0
This commit is contained in:
parent
7569b73e5a
commit
70a0770129
|
|
@ -49,5 +49,8 @@ Issues = "https://github.com/ai-christianson/ra-aid/issues"
|
||||||
[tool.setuptools.dynamic]
|
[tool.setuptools.dynamic]
|
||||||
version = {attr = "ra_aid.version.__version__"}
|
version = {attr = "ra_aid.version.__version__"}
|
||||||
|
|
||||||
|
[tool.hatch.version]
|
||||||
|
path = "ra_aid/__version__.py"
|
||||||
|
|
||||||
[tool.hatch.build.targets.wheel]
|
[tool.hatch.build.targets.wheel]
|
||||||
packages = ["ra_aid"]
|
packages = ["ra_aid"]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""Version information."""
|
||||||
|
|
||||||
|
__version__ = "0.1.0"
|
||||||
Loading…
Reference in New Issue