From 24266a8a34469ef33b70f4892d2f46848012740d Mon Sep 17 00:00:00 2001 From: Patrick Date: Wed, 26 Mar 2025 23:09:51 +0100 Subject: [PATCH] added a package init --- datafast/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/datafast/__init__.py b/datafast/__init__.py index e69de29..4bf583b 100644 --- a/datafast/__init__.py +++ b/datafast/__init__.py @@ -0,0 +1,8 @@ +"""Datafast - A Python package for synthetic text dataset generation""" + +# This version should match the one in pyproject.toml +__version__ = "0.0.5" + +def get_version(): + """Return the current version of the datafast package.""" + return __version__