From 76d148529d009341aa213f29911cea9d19243eab Mon Sep 17 00:00:00 2001 From: IMDelewer Date: Tue, 17 Mar 2026 10:38:48 +0300 Subject: [PATCH] fix: change way to find version from vsc to file --- proxy/__init__.py | 1 + pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 proxy/__init__.py diff --git a/proxy/__init__.py b/proxy/__init__.py new file mode 100644 index 0000000..5da0b9a --- /dev/null +++ b/proxy/__init__.py @@ -0,0 +1 @@ +__version__ = "1.1.2" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 7b3aa85..ab2f8c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.25.0", "hatch-vcs"] +requires = ["hatchling>=1.25.0"] build-backend = "hatchling.build" [project] @@ -66,4 +66,4 @@ packages = ["proxy"] "windows.py" = "windows.py" [tool.hatch.version] -source = "vcs" +path = "proxy/__init__.py"