Add python code

This commit is contained in:
Toast 2024-10-18 13:28:08 +02:00
parent 462b2eac87
commit 4f9fcf589c
5 changed files with 55 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "leek"
version = "0.0.1"
dependencies = [
"PySide6"
]
description = "A small example package"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.scripts]
leek = "leek.leek:main"