Skeleton
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
venv/
|
||||
.venv/
|
||||
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
@@ -6,9 +6,9 @@ build-backend = "setuptools.build_meta"
|
||||
name = "beaky"
|
||||
version = "0.0.1"
|
||||
description = "Scan tickets and decide"
|
||||
requires-python = ">=3.14"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"pil==12.1.1"
|
||||
"pillow==12.1.1"
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
@@ -18,4 +18,4 @@ dev = [
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
beaky = "muj_balicek.hlavni_modul:main"
|
||||
beaky = "beaky.cli:main"
|
||||
0
src/beaky/__init__.py
Normal file
0
src/beaky/__init__.py
Normal file
5
src/beaky/cli.py
Normal file
5
src/beaky/cli.py
Normal file
@@ -0,0 +1,5 @@
|
||||
def main():
|
||||
print("Hi")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user