From 96ea53035f298fded2fc82f35d9005d577f36b4b Mon Sep 17 00:00:00 2001 From: Lars Noack Date: Wed, 23 Apr 2025 11:06:31 +0200 Subject: [PATCH] feat: layed out the proper files --- pyproject.toml | 5 +---- secure_pixelation/__about__.py | 2 -- secure_pixelation/__main__.py | 5 +---- 3 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 secure_pixelation/__about__.py diff --git a/pyproject.toml b/pyproject.toml index 21dc256..ad34393 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "secure_pixelation" +version = "0.0.0" dependencies = [] -dynamic = ["version"] authors = [] description = "Hiding faces with Mosaic has proven incredibly unsafe especially with videos, because the algorythm isn't destructive. However, if you black out the selected area, repopulate it with generative ai, and then pixelate it, it should look authentic, but be 100% destructive, thus safe." readme = "README.md" @@ -30,6 +30,3 @@ packages = ["secure_pixelation"] [tool.hatch.metadata] allow-direct-references = true - -[tool.hatch.version] -path = "secure_pixelation/__about__.py" diff --git a/secure_pixelation/__about__.py b/secure_pixelation/__about__.py deleted file mode 100644 index 9255a5f..0000000 --- a/secure_pixelation/__about__.py +++ /dev/null @@ -1,2 +0,0 @@ -__version__ = "0.0.0" -__name__ = "secure_pixelation" \ No newline at end of file diff --git a/secure_pixelation/__main__.py b/secure_pixelation/__main__.py index 453d429..6038032 100644 --- a/secure_pixelation/__main__.py +++ b/secure_pixelation/__main__.py @@ -1,5 +1,2 @@ -from .__about__ import __name__, __version__ - - def cli(): - print(f"Running {__name__} version {__version__} from __main__.py") + print(f"Running secure_pixelation")