This commit is contained in:
2026-03-08 12:41:59 +01:00
parent 391efeeff4
commit 208eb1794f
5 changed files with 10 additions and 3 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
venv/
.venv/

0
data/.gitkeep Normal file
View File

View File

@@ -6,9 +6,9 @@ build-backend = "setuptools.build_meta"
name = "beaky" name = "beaky"
version = "0.0.1" version = "0.0.1"
description = "Scan tickets and decide" description = "Scan tickets and decide"
requires-python = ">=3.14" requires-python = ">=3.12"
dependencies = [ dependencies = [
"pil==12.1.1" "pillow==12.1.1"
] ]
[project.optional-dependencies] [project.optional-dependencies]
@@ -18,4 +18,4 @@ dev = [
] ]
[project.scripts] [project.scripts]
beaky = "muj_balicek.hlavni_modul:main" beaky = "beaky.cli:main"

0
src/beaky/__init__.py Normal file
View File

5
src/beaky/cli.py Normal file
View File

@@ -0,0 +1,5 @@
def main():
print("Hi")
if __name__ == "__main__":
main()