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")