Initialize IKT218 2026 OSDEV Base

This commit is contained in:
kmltrgyclk
2026-01-26 02:38:32 +01:00
commit 6646b57def
47 changed files with 2765 additions and 0 deletions

18
.github/web/setup.py vendored Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python
from distutils.core import setup
setup(
name='IKT218 OSDev',
version='1.0',
description='The local dev server for IKT218 OSDev',
author='Per-Arne Andersen',
author_email='per.andersen@uia.no',
url='https://ikt218.per-arne.no',
packages=[],
install_requires=[
'requests',
'flask',
'jinja2'
],
)