From 57327d3df562736cad9e278e13beeb55bf3b52ed Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Sun, 29 Jan 2023 12:23:15 +0100 Subject: cleanup --- setup.py | 9 ++++++++- tagit/apps/port-config.yaml | 3 ++- tagit/tiles/__init__.py | 4 ---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 926228c..7cc00a8 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,14 @@ setup( url='https://www.igsor.net/projects/blackstar/tagit/', download_url='https://pip.igsor.net', packages=('tagit', ), - install_requires=('kivy', 'python-dateutil', 'pyyaml'), # pyexiv2 (for test/utils/test_time.py) + install_requires=( + 'kivy', + #'pyexiv2', (for test/utils/test_time.py) + 'pyparsing' + 'python-dateutil', + 'pyyaml', + 'requests', + ), python_requires=">=3.7", ) diff --git a/tagit/apps/port-config.yaml b/tagit/apps/port-config.yaml index 9d3d147..5e874ef 100644 --- a/tagit/apps/port-config.yaml +++ b/tagit/apps/port-config.yaml @@ -141,5 +141,6 @@ ui: Info: {} CursorTags: {} BrowserTags: {} - #Venn: {} + #SelectionTags: {} + #Geo: {} window_size: 1024x768 diff --git a/tagit/tiles/__init__.py b/tagit/tiles/__init__.py index 40345b6..f51ee2a 100644 --- a/tagit/tiles/__init__.py +++ b/tagit/tiles/__init__.py @@ -11,13 +11,11 @@ import typing from tagit.utils.builder import BuilderBase # inner-module imports -##from .anomalies import Anomalies # FIXME: skeleton only from .browser_tags import BrowserTags from .buttons import Buttons from .cursor_tags import CursorTags #from .entity_histogram import EntityHistogram from .geo import Map -#from .hints import Hints from .info import Info #from .libsummary import LibSummary #from .searchtree import Searchtree @@ -39,13 +37,11 @@ __all__: typing.Sequence[str] = ( class TileBuilder(BuilderBase): _factories = { -# #'Anomalies': Anomalies, 'BrowserTags': BrowserTags, 'Buttons': Buttons, 'CursorTags': CursorTags, # 'EntityHistogram': EntityHistogram, 'Geo': Map, -# 'Hints': Hints, 'Info': Info, # 'LibSummary': LibSummary, # 'Searchtree': Searchtree, -- cgit v1.2.3