Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Odevzdávací Systém MO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Mareš
Odevzdávací Systém MO
Commits
85fbb669
Commit
85fbb669
authored
4 years ago
by
Martin Mareš
Browse files
Options
Downloads
Patches
Plain Diff
Instalace pomocí setuptools
parent
80dd6c7f
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
README.md
+6
-0
6 additions, 0 deletions
README.md
TODO
+1
-0
1 addition, 0 deletions
TODO
requirements.txt
+0
-12
0 additions, 12 deletions
requirements.txt
setup.py
+25
-0
25 additions, 0 deletions
setup.py
with
33 additions
and
12 deletions
.gitignore
+
1
−
0
View file @
85fbb669
...
@@ -4,3 +4,4 @@ db/ruian
...
@@ -4,3 +4,4 @@ db/ruian
db/skoly
db/skoly
instance
instance
venv
venv
osmo.egg-info
This diff is collapsed.
Click to expand it.
README.md
+
6
−
0
View file @
85fbb669
# Odevzdávací Systém Matematické Olympiády
# Odevzdávací Systém Matematické Olympiády
## Instalace vývojového prostředí
python3 -m venv venv
. venv/bin/activate
pip install wheel
pip install -e .
This diff is collapsed.
Click to expand it.
TODO
+
1
−
0
View file @
85fbb669
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
- uklidit v logování (jak do DB, tak do app.logger)
- uklidit v logování (jak do DB, tak do app.logger)
- na import by bylo hezké mít testy
- na import by bylo hezké mít testy
- ostylovat login form
- ostylovat login form
- GDPR
- export:
- export:
- lidská jména stavů
- lidská jména stavů
...
...
This diff is collapsed.
Click to expand it.
requirements.txt
deleted
100644 → 0
+
0
−
12
View file @
80dd6c7f
Flask
Flask-WTF
WTForms
blinker
click
dateutils
psycopg2
sqlalchemy
sqlacodegen
bcrypt
flask_sqlalchemy
flask_bootstrap
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
25
−
0
View file @
85fbb669
#!/usr/bin/env python3
import
setuptools
setuptools
.
setup
(
name
=
'
osmo
'
,
version
=
'
0.1
'
,
description
=
'
Odevzdávací systém Matematické olympiády
'
,
packages
=
[
'
mo
'
],
install_requires
=
[
'
Flask
'
,
'
Flask
'
,
'
Flask-WTF
'
,
'
WTForms
'
,
'
blinker
'
,
'
click
'
,
'
dateutils
'
,
'
psycopg2
'
,
'
sqlalchemy
'
,
'
sqlacodegen
'
,
'
bcrypt
'
,
'
flask_sqlalchemy
'
,
'
flask_bootstrap
'
,
],
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment