function-api-builder 0.1.1__tar.gz → 0.1.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.
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/PKG-INFO +1 -5
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/README.md +0 -4
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/pyproject.toml +1 -1
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/assets/api-builder.svg +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/examples/basic/functions/__init__.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/examples/basic/functions/pdf_summary.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/src/api_builder/__init__.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/src/api_builder/__main__.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/src/api_builder/cli.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/src/api_builder/generator.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/src/api_builder_runtime/__init__.py +0 -0
- {function_api_builder-0.1.1 → function_api_builder-0.1.2}/tests/test_builder.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: function-api-builder
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Generate complete FastAPI applications from decorated Python business functions.
|
|
5
5
|
Author: Sushruth Samson
|
|
6
6
|
License-Expression: MIT
|
|
@@ -29,10 +29,6 @@ Requires-Dist: ruff>=0.8; extra == 'dev'
|
|
|
29
29
|
Requires-Dist: twine>=6; extra == 'dev'
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
31
31
|
|
|
32
|
-
<p align="center">
|
|
33
|
-
<img src="assets/api-builder.svg" alt="API Builder" width="180">
|
|
34
|
-
</p>
|
|
35
|
-
|
|
36
32
|
<h1 align="center">API Builder</h1>
|
|
37
33
|
|
|
38
34
|
<p align="center">
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "function-api-builder"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Generate complete FastAPI applications from decorated Python business functions."
|
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
requires-python = ">=3.11"
|
|
File without changes
|
{function_api_builder-0.1.1 → function_api_builder-0.1.2}/examples/basic/functions/__init__.py
RENAMED
|
File without changes
|
{function_api_builder-0.1.1 → function_api_builder-0.1.2}/examples/basic/functions/pdf_summary.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{function_api_builder-0.1.1 → function_api_builder-0.1.2}/src/api_builder_runtime/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|