From c3adc9b2ce459e1ea5dfa75a536062d52c31bfbc Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 16 Feb 2024 23:25:17 +0100 Subject: [PATCH] version --- __init__.py | 1 + pyproject.toml | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) 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'