-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
last changes for firste stable version 2.0.0
- Loading branch information
1 parent
52c7981
commit b2a8c5d
Showing
9 changed files
with
90 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ GradeMan2conf.yaml | |
*.deb | ||
*.exe | ||
__pycache__/ | ||
buildExe/build/ | ||
buildExe/work/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ Version: 2.0.0 | |
Architecture: all | ||
Maintainer: Dirk Winkel <[email protected]> | ||
Installed-Size: 425 | ||
Depends: python3 (>= 3.7.0), python3-jinja2 (>= 2.10.0), python3-wxgtk4.0 (>= 4.0.0), python3-waitress (>= 1.4.0) | ||
Depends: python3 (>= 3.7.0), python3-flask (>= 1.1.0), python3-markdown (>= 3.1.0), python3-jinja2 (>= 2.10.0), python3-yaml (>= 5.3.0), python3-wxgtk4.0 (>= 4.0.0), python3-waitress (>= 1.4.0) | ||
Section: utils | ||
Priority: optional | ||
Homepage: https://polarwinkel.de/grademan.html | ||
Description: Ein Schüler- Noten- und Unterrichtsmanager für Lehrer. | ||
GradeMan2 vereint Stundenverwaltung, Notengebung, Anwesenheitskontrolle, | ||
automatische Zusammenfassungen wie Durchschnittsnoten etc. in einer | ||
Datenbank. | ||
Die Benutzeroberfläche ist im Browser und adaptiert damit automatisch | ||
alle modernen Möglichkeiten des Browsers wie Lesezeichenverwaltung, | ||
Textsuche u.v.m. | ||
Description: student-, lesson- and grade-management for teachers | ||
GradeMan2 unites a lesson-management, a grade database, attendance- | ||
documentation with automatic sumamries like average grades. | ||
GradeMan2 is a server, the GUI will run in a browser, either on the | ||
localhost or over the web if run behind a proxy server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ GradeMan2 (2.0.0-0) stable; urgency=low | |
|
||
* Initial Release | ||
|
||
-- Dirk Winkel <[email protected]> Mon, 05 Jul 2021 20:00:00 +0100 | ||
-- Dirk Winkel <[email protected]> Tue, 13 Jul 2021 20:00:00 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
mkdir work | ||
xcopy ..\GradeMan2Tray.py work\ | ||
xcopy ..\GradeMan2 work\GradeMan2\ /E | ||
|
||
pip install py2exe cx_freeze | ||
pip install flask waitress markdown jinja2 pyyaml wxWidgets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
import os | ||
import os, sys | ||
|
||
os.chdir('build') | ||
import packaging | ||
import packaging.version | ||
import packaging.specifiers | ||
import packaging.requirements | ||
|
||
import setuptools | ||
from distutils.core import setup | ||
import py2exe | ||
# TODO: Copy stuff to work-directory, clean up after finish | ||
os.chdir('work') | ||
sys.path.append(os.getcwd()+'\\GradeMan2') | ||
import app | ||
|
||
setup(console=['GradeMan2Tray.py']) | ||
options={"py2exe": {"includes": ["pkg_resources._vendor.appdirs", 'packaging.specifiers', 'packaging.requirements', 'markdown']}} | ||
|
||
setup(console=['GradeMan2Tray.py'], options=options) | ||
|
||
# run with: | ||
# py2exeInstall.py py2exe | ||
# py2exeInstall.py py2exe |