feat: layed out the proper files

This commit is contained in:
Hazel 2025-04-23 11:06:31 +02:00
parent 632bd77868
commit 96ea53035f
3 changed files with 2 additions and 10 deletions

View File

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

View File

@ -1,2 +0,0 @@
__version__ = "0.0.0"
__name__ = "secure_pixelation"

View File

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