opencontext-api 0.3.0__tar.gz → 1.0.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opencontext-api
3
- Version: 0.3.0
3
+ Version: 1.0.0
4
4
  Summary: FastAPI adapter for OpenContext Runtime
5
5
  Author: OpenContext Runtime maintainers
6
6
  License-Expression: MIT
@@ -9,7 +9,7 @@ Project-URL: Documentation, https://github.com/CesarMSFelipe/OpenContext-Runtime
9
9
  Project-URL: Issues, https://github.com/CesarMSFelipe/OpenContext-Runtime/issues
10
10
  Project-URL: Source, https://github.com/CesarMSFelipe/OpenContext-Runtime
11
11
  Keywords: ai,llm,context-engineering,fastapi,security
12
- Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Development Status :: 5 - Production/Stable
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: Framework :: FastAPI
15
15
  Classifier: Programming Language :: Python :: 3
@@ -19,10 +19,12 @@ Classifier: Topic :: Security
19
19
  Requires-Python: >=3.12
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: fastapi>=0.110
22
+ Requires-Dist: fastapi<0.136.3,>=0.110
23
23
  Requires-Dist: httpx>=0.27
24
+ Requires-Dist: idna>=3.15
24
25
  Requires-Dist: opencontext-core>=0.1.0
25
26
  Requires-Dist: opencontext-profiles>=0.1.0
27
+ Requires-Dist: starlette>=1.0.1
26
28
  Dynamic: license-file
27
29
 
28
30
  # opencontext-api
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opencontext-api
3
- Version: 0.3.0
3
+ Version: 1.0.0
4
4
  Summary: FastAPI adapter for OpenContext Runtime
5
5
  Author: OpenContext Runtime maintainers
6
6
  License-Expression: MIT
@@ -9,7 +9,7 @@ Project-URL: Documentation, https://github.com/CesarMSFelipe/OpenContext-Runtime
9
9
  Project-URL: Issues, https://github.com/CesarMSFelipe/OpenContext-Runtime/issues
10
10
  Project-URL: Source, https://github.com/CesarMSFelipe/OpenContext-Runtime
11
11
  Keywords: ai,llm,context-engineering,fastapi,security
12
- Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Development Status :: 5 - Production/Stable
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: Framework :: FastAPI
15
15
  Classifier: Programming Language :: Python :: 3
@@ -19,10 +19,12 @@ Classifier: Topic :: Security
19
19
  Requires-Python: >=3.12
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: fastapi>=0.110
22
+ Requires-Dist: fastapi<0.136.3,>=0.110
23
23
  Requires-Dist: httpx>=0.27
24
+ Requires-Dist: idna>=3.15
24
25
  Requires-Dist: opencontext-core>=0.1.0
25
26
  Requires-Dist: opencontext-profiles>=0.1.0
27
+ Requires-Dist: starlette>=1.0.1
26
28
  Dynamic: license-file
27
29
 
28
30
  # opencontext-api
@@ -1,4 +1,6 @@
1
- fastapi>=0.110
1
+ fastapi<0.136.3,>=0.110
2
2
  httpx>=0.27
3
+ idna>=3.15
3
4
  opencontext-core>=0.1.0
4
5
  opencontext-profiles>=0.1.0
6
+ starlette>=1.0.1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "opencontext-api"
7
- version = "0.3.0"
7
+ version = "1.0.0"
8
8
  description = "FastAPI adapter for OpenContext Runtime"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -13,7 +13,7 @@ license-files = ["LICENSE"]
13
13
  authors = [{ name = "OpenContext Runtime maintainers" }]
14
14
  keywords = ["ai", "llm", "context-engineering", "fastapi", "security"]
15
15
  classifiers = [
16
- "Development Status :: 3 - Alpha",
16
+ "Development Status :: 5 - Production/Stable",
17
17
  "Intended Audience :: Developers",
18
18
  "Framework :: FastAPI",
19
19
  "Programming Language :: Python :: 3",
@@ -22,10 +22,12 @@ classifiers = [
22
22
  "Topic :: Security",
23
23
  ]
24
24
  dependencies = [
25
- "fastapi>=0.110",
25
+ "fastapi>=0.110,<0.136.3", # 0.136.3 has MAL-2026-4750
26
26
  "httpx>=0.27",
27
+ "idna>=3.15",
27
28
  "opencontext-core>=0.1.0",
28
29
  "opencontext-profiles>=0.1.0",
30
+ "starlette>=1.0.1",
29
31
  ]
30
32
 
31
33
  [project.urls]
File without changes