trovesuite 1.0.0__tar.gz → 1.0.2__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.
- {trovesuite-1.0.0/src/trovesuite.egg-info → trovesuite-1.0.2}/PKG-INFO +9 -7
- {trovesuite-1.0.0 → trovesuite-1.0.2}/README.md +6 -4
- {trovesuite-1.0.0 → trovesuite-1.0.2}/pyproject.toml +6 -6
- {trovesuite-1.0.0 → trovesuite-1.0.2}/setup.py +2 -2
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/auth/__init__.py +1 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/auth/auth_base.py +1 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/auth/auth_read_dto.py +1 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/auth/auth_write_dto.py +1 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2/src/trovesuite.egg-info}/PKG-INFO +9 -7
- {trovesuite-1.0.0 → trovesuite-1.0.2}/LICENSE +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/MANIFEST.in +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/requirements.txt +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/setup.cfg +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/__init__.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/auth/auth_controller.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/auth/auth_service.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/configs/__init__.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/configs/database.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/configs/logging.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/configs/settings.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/entities/__init__.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/entities/health.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/entities/sh_response.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/utils/__init__.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite/utils/helper.py +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite.egg-info/SOURCES.txt +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite.egg-info/dependency_links.txt +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite.egg-info/not-zip-safe +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite.egg-info/requires.txt +0 -0
- {trovesuite-1.0.0 → trovesuite-1.0.2}/src/trovesuite.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trovesuite
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.2
|
|
4
|
+
Summary: TroveSuite services package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications
|
|
5
5
|
Home-page: https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
6
6
|
Author: Bright Debrah Owusu
|
|
7
7
|
Author-email: Bright Debrah Owusu <owusu.debrah@deladetech.com>
|
|
@@ -11,7 +11,7 @@ Project-URL: Homepage, https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
|
11
11
|
Project-URL: Repository, https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
12
12
|
Project-URL: Documentation, https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
13
13
|
Project-URL: Bug Tracker, https://dev.azure.com/brightgclt/trovesuite/_workitems/create
|
|
14
|
-
Keywords: authentication,authorization,jwt,
|
|
14
|
+
Keywords: authentication,authorization,notifications,jwt,trovesuite,fastapi,security,tenant,permissions,enterprise,services
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Intended Audience :: Developers
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -49,19 +49,21 @@ Dynamic: home-page
|
|
|
49
49
|
Dynamic: license-file
|
|
50
50
|
Dynamic: requires-python
|
|
51
51
|
|
|
52
|
-
# TroveSuite
|
|
52
|
+
# TroveSuite Packages
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
TroveSuite package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications.
|
|
55
55
|
|
|
56
56
|
## Features
|
|
57
57
|
|
|
58
|
-
- **
|
|
59
|
-
- **
|
|
58
|
+
- **Authentication Services**: JWT token validation and user authentication
|
|
59
|
+
- **Authorization Services**: Multi-level authorization with tenant verification
|
|
60
|
+
- **Notification Services**: Send and manage notifications for users
|
|
60
61
|
- **Permission Checking**: Hierarchical permission system (organization > business > app > location > resource)
|
|
61
62
|
- **Database Integration**: PostgreSQL support with connection pooling
|
|
62
63
|
- **Logging**: Comprehensive logging with multiple output formats
|
|
63
64
|
- **Azure Integration**: Support for Azure Storage Queues and Managed Identity
|
|
64
65
|
- **FastAPI Ready**: Built for FastAPI applications
|
|
66
|
+
- **Extensible**: Easy to add new services and functionality
|
|
65
67
|
|
|
66
68
|
## Installation
|
|
67
69
|
|
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
# TroveSuite
|
|
1
|
+
# TroveSuite Packages
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
TroveSuite package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
7
|
+
- **Authentication Services**: JWT token validation and user authentication
|
|
8
|
+
- **Authorization Services**: Multi-level authorization with tenant verification
|
|
9
|
+
- **Notification Services**: Send and manage notifications for users
|
|
9
10
|
- **Permission Checking**: Hierarchical permission system (organization > business > app > location > resource)
|
|
10
11
|
- **Database Integration**: PostgreSQL support with connection pooling
|
|
11
12
|
- **Logging**: Comprehensive logging with multiple output formats
|
|
12
13
|
- **Azure Integration**: Support for Azure Storage Queues and Managed Identity
|
|
13
14
|
- **FastAPI Ready**: Built for FastAPI applications
|
|
15
|
+
- **Extensible**: Easy to add new services and functionality
|
|
14
16
|
|
|
15
17
|
## Installation
|
|
16
18
|
|
|
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "trovesuite"
|
|
7
|
-
version = "1.0.
|
|
8
|
-
description = "
|
|
7
|
+
version = "1.0.2"
|
|
8
|
+
description = "TroveSuite services package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications"
|
|
9
9
|
authors = ["brightgclt <brightgclt@gmail.com>"]
|
|
10
10
|
license = "MIT"
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
homepage = "https://dev.azure.com/brightgclt/trovesuite/_git/packages"
|
|
13
13
|
repository = "https://dev.azure.com/brightgclt/trovesuite/_git/packages"
|
|
14
14
|
documentation = "https://dev.azure.com/brightgclt/trovesuite/_git/packages"
|
|
15
|
-
keywords = ["authentication", "authorization", "jwt", "
|
|
15
|
+
keywords = ["authentication", "authorization", "notifications", "jwt", "trovesuite", "fastapi", "security", "tenant", "permissions", "enterprise", "services"]
|
|
16
16
|
classifiers = [
|
|
17
17
|
"Development Status :: 5 - Production/Stable",
|
|
18
18
|
"Intended Audience :: Developers",
|
|
@@ -56,8 +56,8 @@ Documentation = "https://dev.azure.com/brightgclt/trovesuite/_git/packages"
|
|
|
56
56
|
|
|
57
57
|
[project]
|
|
58
58
|
name = "trovesuite"
|
|
59
|
-
version = "1.0.
|
|
60
|
-
description = "
|
|
59
|
+
version = "1.0.2"
|
|
60
|
+
description = "TroveSuite services package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications"
|
|
61
61
|
readme = "README.md"
|
|
62
62
|
license = {text = "MIT"}
|
|
63
63
|
authors = [
|
|
@@ -66,7 +66,7 @@ authors = [
|
|
|
66
66
|
maintainers = [
|
|
67
67
|
{name = "Bright Debrah Owusu", email = "owusu.debrah@deladetech.com"}
|
|
68
68
|
]
|
|
69
|
-
keywords = ["authentication", "authorization", "jwt", "
|
|
69
|
+
keywords = ["authentication", "authorization", "notifications", "jwt", "trovesuite", "fastapi", "security", "tenant", "permissions", "enterprise", "services"]
|
|
70
70
|
classifiers = [
|
|
71
71
|
"Development Status :: 5 - Production/Stable",
|
|
72
72
|
"Intended Audience :: Developers",
|
|
@@ -15,10 +15,10 @@ with open("pyproject.toml", "r", encoding="utf-8") as fh:
|
|
|
15
15
|
|
|
16
16
|
setup(
|
|
17
17
|
name="trovesuite",
|
|
18
|
-
version="1.0.
|
|
18
|
+
version="1.0.2",
|
|
19
19
|
author="Bright Debrah Owusu",
|
|
20
20
|
author_email="owusu.debrah@deladetech.com",
|
|
21
|
-
description="
|
|
21
|
+
description="TroveSuite services package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications",
|
|
22
22
|
long_description=long_description,
|
|
23
23
|
long_description_content_type="text/markdown",
|
|
24
24
|
url="https://dev.azure.com/brightgclt/trovesuite/_git/packages",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trovesuite
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.2
|
|
4
|
+
Summary: TroveSuite services package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications
|
|
5
5
|
Home-page: https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
6
6
|
Author: Bright Debrah Owusu
|
|
7
7
|
Author-email: Bright Debrah Owusu <owusu.debrah@deladetech.com>
|
|
@@ -11,7 +11,7 @@ Project-URL: Homepage, https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
|
11
11
|
Project-URL: Repository, https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
12
12
|
Project-URL: Documentation, https://dev.azure.com/brightgclt/trovesuite/_git/packages
|
|
13
13
|
Project-URL: Bug Tracker, https://dev.azure.com/brightgclt/trovesuite/_workitems/create
|
|
14
|
-
Keywords: authentication,authorization,jwt,
|
|
14
|
+
Keywords: authentication,authorization,notifications,jwt,trovesuite,fastapi,security,tenant,permissions,enterprise,services
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Intended Audience :: Developers
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -49,19 +49,21 @@ Dynamic: home-page
|
|
|
49
49
|
Dynamic: license-file
|
|
50
50
|
Dynamic: requires-python
|
|
51
51
|
|
|
52
|
-
# TroveSuite
|
|
52
|
+
# TroveSuite Packages
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
TroveSuite package providing authentication, authorization, notifications, and other enterprise services for TroveSuite applications.
|
|
55
55
|
|
|
56
56
|
## Features
|
|
57
57
|
|
|
58
|
-
- **
|
|
59
|
-
- **
|
|
58
|
+
- **Authentication Services**: JWT token validation and user authentication
|
|
59
|
+
- **Authorization Services**: Multi-level authorization with tenant verification
|
|
60
|
+
- **Notification Services**: Send and manage notifications for users
|
|
60
61
|
- **Permission Checking**: Hierarchical permission system (organization > business > app > location > resource)
|
|
61
62
|
- **Database Integration**: PostgreSQL support with connection pooling
|
|
62
63
|
- **Logging**: Comprehensive logging with multiple output formats
|
|
63
64
|
- **Azure Integration**: Support for Azure Storage Queues and Managed Identity
|
|
64
65
|
- **FastAPI Ready**: Built for FastAPI applications
|
|
66
|
+
- **Extensible**: Easy to add new services and functionality
|
|
65
67
|
|
|
66
68
|
## Installation
|
|
67
69
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|