diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-01-29 12:23:15 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-01-29 12:23:15 +0100 |
commit | 57327d3df562736cad9e278e13beeb55bf3b52ed (patch) | |
tree | aaba60bfcc7bdf27b151d97a46b2e82fc308a806 | |
parent | bfb86bdd23c2fb7211636841545b4e003f07b643 (diff) | |
download | tagit-57327d3df562736cad9e278e13beeb55bf3b52ed.tar.gz tagit-57327d3df562736cad9e278e13beeb55bf3b52ed.tar.bz2 tagit-57327d3df562736cad9e278e13beeb55bf3b52ed.zip |
cleanup
-rw-r--r-- | setup.py | 9 | ||||
-rw-r--r-- | tagit/apps/port-config.yaml | 3 | ||||
-rw-r--r-- | tagit/tiles/__init__.py | 4 |
3 files changed, 10 insertions, 6 deletions
@@ -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, |