Created basic project structure.

This commit is contained in:
2025-07-17 16:56:52 +02:00
parent 59f55f33fe
commit 445b3b3ca1
12 changed files with 30 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "study-dashboard"
version = "0.1.0"
description = "Dashboard zur Nachverfolgung des Studienfortschritts"
authors = [
{
name = "Marcel König",
email = "marcel.koenig@iu-study.org"
}
]
dependencies = [
"PySide6 >= 6.4.0",
"dependency-injector >= 4.41.0"
]
required-python = ">=3.9"
[project.optional.dependencies]
dev = [
"pytest >= 7.0",
"black >= 23.0",
"flake8 >= 6.0",
"mypy >= 1.0"
]
[project.scripts]
study-dashboard = "study-dashboard.main:main"
View File
View File
View File
View File
View File
View File
View File
View File
View File