Created basic project structure.
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user