Created basic project structure.
This commit is contained in:
parent
59f55f33fe
commit
445b3b3ca1
30
pyproject.toml
Normal file
30
pyproject.toml
Normal 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"
|
||||||
0
requirements.txt
Normal file
0
requirements.txt
Normal file
0
src/study-dashboard/__init__.py
Normal file
0
src/study-dashboard/__init__.py
Normal file
0
src/study-dashboard/di_container.py
Normal file
0
src/study-dashboard/di_container.py
Normal file
0
src/study-dashboard/gui/__init__.py
Normal file
0
src/study-dashboard/gui/__init__.py
Normal file
0
src/study-dashboard/gui/mainView.py
Normal file
0
src/study-dashboard/gui/mainView.py
Normal file
0
src/study-dashboard/main.py
Normal file
0
src/study-dashboard/main.py
Normal file
0
src/study-dashboard/services/__init__.py
Normal file
0
src/study-dashboard/services/__init__.py
Normal file
0
src/study-dashboard/services/business_logic.py
Normal file
0
src/study-dashboard/services/business_logic.py
Normal file
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
0
tests/test_main.py
Normal file
0
tests/test_main.py
Normal file
0
tests/test_services.py
Normal file
0
tests/test_services.py
Normal file
Loading…
x
Reference in New Issue
Block a user