31 lines
645 B
TOML
31 lines
645 B
TOML
[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"
|
|
]
|
|
requires-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"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|