app-foundation 0.0.1__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.
- app_foundation-0.0.1/PKG-INFO +44 -0
- app_foundation-0.0.1/README.md +30 -0
- app_foundation-0.0.1/pyproject.toml +27 -0
- app_foundation-0.0.1/setup.cfg +4 -0
- app_foundation-0.0.1/src/app_foundation/__init__.py +13 -0
- app_foundation-0.0.1/src/app_foundation/py.typed +0 -0
- app_foundation-0.0.1/src/app_foundation.egg-info/PKG-INFO +44 -0
- app_foundation-0.0.1/src/app_foundation.egg-info/SOURCES.txt +8 -0
- app_foundation-0.0.1/src/app_foundation.egg-info/dependency_links.txt +1 -0
- app_foundation-0.0.1/src/app_foundation.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: app-foundation
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Host-neutral foundation for applications in an ecosystem: principal and service identity, secret resolution, storage clients, cache and locks, HTTP utilities, events and observability primitives.
|
|
5
|
+
Author: Elena Viter
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/elenaviter/app-ecosystem
|
|
8
|
+
Project-URL: Repository, https://github.com/elenaviter/app-ecosystem
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# app-foundation
|
|
16
|
+
|
|
17
|
+
Host-neutral foundation for applications in an ecosystem.
|
|
18
|
+
|
|
19
|
+
Applications that serve real users keep re-needing the same ground:
|
|
20
|
+
knowing who is calling (a person through a browser session, a service
|
|
21
|
+
through workload identity), resolving secret references without holding
|
|
22
|
+
secrets in code, talking to Postgres and Redis, caching with distributed
|
|
23
|
+
locks, speaking HTTP safely (CSRF, external URL discipline), and emitting
|
|
24
|
+
events and observability signals. This package is that ground, once.
|
|
25
|
+
|
|
26
|
+
Scope boundary, deliberately strict:
|
|
27
|
+
|
|
28
|
+
- generic `Principal` and service identity contracts;
|
|
29
|
+
- secret-reference resolution and vault adapters;
|
|
30
|
+
- Postgres and Redis clients, cache, compare-and-set, distributed locks;
|
|
31
|
+
- HTTP, CSRF, and external-URL utilities;
|
|
32
|
+
- events and observability primitives.
|
|
33
|
+
|
|
34
|
+
app-foundation contains no authority models (those are
|
|
35
|
+
[`prokura`](../prokura/README.md)), no Connection Hub behavior, no
|
|
36
|
+
KDCube bundle concepts, and no deployment orchestration. It is the layer
|
|
37
|
+
both of those stand on.
|
|
38
|
+
|
|
39
|
+
**Version 0.0.1 claims the name.** The modules are being extracted from
|
|
40
|
+
the production implementation inside
|
|
41
|
+
[KDCube](https://github.com/kdcube/kdcube), behind existing host
|
|
42
|
+
adapters, as part of the Prokura extraction.
|
|
43
|
+
|
|
44
|
+
Home: https://github.com/elenaviter/app-ecosystem
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# app-foundation
|
|
2
|
+
|
|
3
|
+
Host-neutral foundation for applications in an ecosystem.
|
|
4
|
+
|
|
5
|
+
Applications that serve real users keep re-needing the same ground:
|
|
6
|
+
knowing who is calling (a person through a browser session, a service
|
|
7
|
+
through workload identity), resolving secret references without holding
|
|
8
|
+
secrets in code, talking to Postgres and Redis, caching with distributed
|
|
9
|
+
locks, speaking HTTP safely (CSRF, external URL discipline), and emitting
|
|
10
|
+
events and observability signals. This package is that ground, once.
|
|
11
|
+
|
|
12
|
+
Scope boundary, deliberately strict:
|
|
13
|
+
|
|
14
|
+
- generic `Principal` and service identity contracts;
|
|
15
|
+
- secret-reference resolution and vault adapters;
|
|
16
|
+
- Postgres and Redis clients, cache, compare-and-set, distributed locks;
|
|
17
|
+
- HTTP, CSRF, and external-URL utilities;
|
|
18
|
+
- events and observability primitives.
|
|
19
|
+
|
|
20
|
+
app-foundation contains no authority models (those are
|
|
21
|
+
[`prokura`](../prokura/README.md)), no Connection Hub behavior, no
|
|
22
|
+
KDCube bundle concepts, and no deployment orchestration. It is the layer
|
|
23
|
+
both of those stand on.
|
|
24
|
+
|
|
25
|
+
**Version 0.0.1 claims the name.** The modules are being extracted from
|
|
26
|
+
the production implementation inside
|
|
27
|
+
[KDCube](https://github.com/kdcube/kdcube), behind existing host
|
|
28
|
+
adapters, as part of the Prokura extraction.
|
|
29
|
+
|
|
30
|
+
Home: https://github.com/elenaviter/app-ecosystem
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "app-foundation"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Host-neutral foundation for applications in an ecosystem: principal and service identity, secret resolution, storage clients, cache and locks, HTTP utilities, events and observability primitives."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "Elena Viter" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://github.com/elenaviter/app-ecosystem"
|
|
21
|
+
Repository = "https://github.com/elenaviter/app-ecosystem"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.package-data]
|
|
27
|
+
app_foundation = ["py.typed"]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""app-foundation: host-neutral foundation for applications in an ecosystem.
|
|
2
|
+
|
|
3
|
+
Generic principal and service identity, secret-reference resolution,
|
|
4
|
+
Postgres/Redis clients, cache and distributed locks, HTTP/CSRF/external-URL
|
|
5
|
+
utilities, events and observability primitives. No authority models (those
|
|
6
|
+
are `prokura`), no Connection Hub behavior, no KDCube bundle concepts, no
|
|
7
|
+
deployment orchestration.
|
|
8
|
+
|
|
9
|
+
Version 0.0.1 claims the name; the modules are being extracted from the
|
|
10
|
+
production implementation. Status: https://github.com/elenaviter/app-ecosystem
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
__version__ = "0.0.1"
|
|
File without changes
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: app-foundation
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Host-neutral foundation for applications in an ecosystem: principal and service identity, secret resolution, storage clients, cache and locks, HTTP utilities, events and observability primitives.
|
|
5
|
+
Author: Elena Viter
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/elenaviter/app-ecosystem
|
|
8
|
+
Project-URL: Repository, https://github.com/elenaviter/app-ecosystem
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# app-foundation
|
|
16
|
+
|
|
17
|
+
Host-neutral foundation for applications in an ecosystem.
|
|
18
|
+
|
|
19
|
+
Applications that serve real users keep re-needing the same ground:
|
|
20
|
+
knowing who is calling (a person through a browser session, a service
|
|
21
|
+
through workload identity), resolving secret references without holding
|
|
22
|
+
secrets in code, talking to Postgres and Redis, caching with distributed
|
|
23
|
+
locks, speaking HTTP safely (CSRF, external URL discipline), and emitting
|
|
24
|
+
events and observability signals. This package is that ground, once.
|
|
25
|
+
|
|
26
|
+
Scope boundary, deliberately strict:
|
|
27
|
+
|
|
28
|
+
- generic `Principal` and service identity contracts;
|
|
29
|
+
- secret-reference resolution and vault adapters;
|
|
30
|
+
- Postgres and Redis clients, cache, compare-and-set, distributed locks;
|
|
31
|
+
- HTTP, CSRF, and external-URL utilities;
|
|
32
|
+
- events and observability primitives.
|
|
33
|
+
|
|
34
|
+
app-foundation contains no authority models (those are
|
|
35
|
+
[`prokura`](../prokura/README.md)), no Connection Hub behavior, no
|
|
36
|
+
KDCube bundle concepts, and no deployment orchestration. It is the layer
|
|
37
|
+
both of those stand on.
|
|
38
|
+
|
|
39
|
+
**Version 0.0.1 claims the name.** The modules are being extracted from
|
|
40
|
+
the production implementation inside
|
|
41
|
+
[KDCube](https://github.com/kdcube/kdcube), behind existing host
|
|
42
|
+
adapters, as part of the Prokura extraction.
|
|
43
|
+
|
|
44
|
+
Home: https://github.com/elenaviter/app-ecosystem
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
app_foundation
|