Solid start, README added, halloween carve drawing works, but doesn't do anything yet.

This commit is contained in:
csd4ni3l
2025-10-22 16:46:28 +02:00
commit bb2eec1a42
18 changed files with 1393 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[project]
name = "loginween"
version = "0.0.1"
description = "LoginWeen"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"flask>=3.1.2",
"flask-login>=0.6.3",
"python-dotenv>=1.1.1",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
[project.scripts]
loginween = "loginween.run:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]