diff --git a/__init__.py b/__init__.py index e69de29..c57bfd5 100644 --- a/__init__.py +++ b/__init__.py @@ -0,0 +1 @@ +__version__ = '0.0.0' diff --git a/pyproject.toml b/pyproject.toml index 28be713..207691a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,15 +16,17 @@ classifiers = [ ] dependencies = [] description = 'Read Write eXecute' -dynamic = [] +dynamic = ['version'] keywords = [] license = { file = 'license.md' } name = 'rwx' readme = 'readme.md' requires-python = '>=3.10' -version = '0.0.0' [project.scripts] -# command = 'module:function' +# command = 'package.module:function' [project.urls] + +[tool.hatch.version] +path = '__init__.py'