From be7bd08cd9a33664aecf85f7baa3eba33d926b08 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 04:51:44 +0000 Subject: [PATCH] Initial commit: Add python-stub-generator project --- stubgen/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 stubgen/__init__.py diff --git a/stubgen/__init__.py b/stubgen/__init__.py new file mode 100644 index 0000000..30872ba --- /dev/null +++ b/stubgen/__init__.py @@ -0,0 +1,7 @@ +"""Python Type Stub Generator CLI Tool. + +A tool that automatically generates Python type stub files (.pyi) +from untyped Python code using static analysis. +""" + +__version__ = "0.1.0"