Skip to content

Commit

Permalink
chore: add new stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Oct 17, 2018
1 parent 42f3ec9 commit 013d590
Show file tree
Hide file tree
Showing 31 changed files with 1,159 additions and 786 deletions.
15 changes: 2 additions & 13 deletions Pipfile
@@ -1,29 +1,18 @@
[[source]]

url = "https://pypi.org/simple/"
verify_ssl = true
name = "pypi"


[packages]

dariah_topics_light = "==1.4"
lda = "==1.0.5"
bokeh = "==0.12.7"
lxml = "==4.2.1"
flask = "==1.0.2"
pandas = "==0.22.0"
numpy = "==1.14.2"
pyqt5 = "==5.10.0"
flask = "*"


[dev-packages]

pytest = "*"
pytest-cov = "*"
pytest-flask = "*"


[requires]
python_version = "3.7"

python_version = "3.6"
116 changes: 69 additions & 47 deletions README.md 100755 → 100644

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions application/__init__.py

This file was deleted.

19 changes: 0 additions & 19 deletions application/config.py

This file was deleted.

120 changes: 0 additions & 120 deletions application/gui.py

This file was deleted.

201 changes: 0 additions & 201 deletions application/modeling.py

This file was deleted.

12 changes: 12 additions & 0 deletions application/schema.sql
@@ -0,0 +1,12 @@
DROP TABLE IF EXISTS textfiles;
DROP TABLE IF EXISTS model;

CREATE TABLE textfiles (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT UNIQUE NOT NULL,
text TEXT NOT NULL
);

CREATE TABLE model (
id INTEGER PRIMARY KEY AUTOINCREMENT
);

0 comments on commit 013d590

Please sign in to comment.