bfabric-web-apps 0.1.5__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/PKG-INFO +5 -4
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/resource_utilities.py +1 -1
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/pyproject.toml +5 -2
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/LICENSE +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/__init__.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/layouts/layouts.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/objects/BfabricInterface.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/objects/Logger.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/app_init.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/callbacks.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/components.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/config.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/create_app_in_bfabric.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/get_logger.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/get_power_user_wrapper.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/redis_connection.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/redis_queue.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/redis_worker_init.py +0 -0
- {bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/run_main_pipeline.py +0 -0
@@ -1,14 +1,15 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: bfabric-web-apps
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: A package containing handy boilerplate utilities for developing bfabric web-applications
|
5
5
|
Author: Marc Zuber, Griffin White, GWC GmbH
|
6
|
-
Requires-Python: >=3.
|
6
|
+
Requires-Python: >=3.10,<4.0
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
8
|
-
Classifier: Programming Language :: Python :: 3.8
|
9
|
-
Classifier: Programming Language :: Python :: 3.9
|
10
8
|
Classifier: Programming Language :: Python :: 3.10
|
11
9
|
Classifier: Programming Language :: Python :: 3.11
|
10
|
+
Requires-Dist: bfabric (>=1.13.23,<2.0.0)
|
11
|
+
Requires-Dist: dash (>=3.0.2,<4.0.0)
|
12
|
+
Requires-Dist: dash-bootstrap-components (>=2.0.0,<3.0.0)
|
12
13
|
Requires-Dist: pydantic-settings (>=2.8.1,<3.0.0)
|
13
14
|
Requires-Dist: pydantic[email] (>=2.10.6,<3.0.0)
|
14
15
|
Requires-Dist: rq (==1.15.1)
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/resource_utilities.py
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
from bfabric_web_apps.utils.get_logger import get_logger
|
2
2
|
from bfabric_web_apps.objects.BfabricInterface import bfabric_interface
|
3
3
|
from bfabric_web_apps.utils.get_power_user_wrapper import get_power_user_wrapper
|
4
|
-
|
4
|
+
|
5
5
|
from pathlib import Path
|
6
6
|
|
7
7
|
def create_workunit(token_data, application_name, application_description, application_id, container_id):
|
@@ -1,14 +1,17 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "bfabric-web-apps"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.6"
|
4
4
|
description = "A package containing handy boilerplate utilities for developing bfabric web-applications"
|
5
5
|
authors = ["Marc Zuber, Griffin White, GWC GmbH"]
|
6
6
|
|
7
7
|
[tool.poetry.dependencies]
|
8
|
-
python = "^3.
|
8
|
+
python = "^3.10"
|
9
9
|
rq = "1.15.1"
|
10
10
|
pydantic-settings = "^2.8.1"
|
11
11
|
pydantic = {extras = ["email"], version = "^2.10.6"}
|
12
|
+
bfabric = "^1.13.23"
|
13
|
+
dash = "^3.0.2"
|
14
|
+
dash-bootstrap-components = "^2.0.0"
|
12
15
|
|
13
16
|
[tool.poetry.dev-dependencies]
|
14
17
|
|
File without changes
|
File without changes
|
File without changes
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/objects/BfabricInterface.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/create_app_in_bfabric.py
RENAMED
File without changes
|
File without changes
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/get_power_user_wrapper.py
RENAMED
File without changes
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/redis_connection.py
RENAMED
File without changes
|
File without changes
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/redis_worker_init.py
RENAMED
File without changes
|
{bfabric_web_apps-0.1.5 → bfabric_web_apps-0.1.6}/bfabric_web_apps/utils/run_main_pipeline.py
RENAMED
File without changes
|