aegra 0.1.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.
aegra-0.1.0/.gitignore ADDED
@@ -0,0 +1,32 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+
12
+ # env files
13
+ .env
14
+
15
+ # Pycharm
16
+ .idea/
17
+
18
+ # VSCode
19
+ .vscode/
20
+
21
+ # Testing
22
+ .coverage
23
+ coverage.xml
24
+ htmlcov/
25
+ .pytest_cache/
26
+ .mypy_cache/
27
+
28
+ # Ruff
29
+ .ruff_cache/
30
+
31
+ # Pre-commit
32
+ .pre-commit-cache/
aegra-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.4
2
+ Name: aegra
3
+ Version: 0.1.0
4
+ Summary: Aegra - Self-hosted Agent Protocol server (meta-package)
5
+ Project-URL: Homepage, https://github.com/ibbybuilds/aegra
6
+ Project-URL: Documentation, https://github.com/ibbybuilds/aegra#readme
7
+ Project-URL: Repository, https://github.com/ibbybuilds/aegra
8
+ Project-URL: Issues, https://github.com/ibbybuilds/aegra/issues
9
+ Author-email: Muhammad Ibrahim <mibrahim37612@gmail.com>
10
+ License-Expression: Apache-2.0
11
+ Keywords: agent-protocol,agents,fastapi,langgraph,llm,self-hosted
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Framework :: FastAPI
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.11
21
+ Requires-Dist: aegra-cli>=0.1.0
22
+ Description-Content-Type: text/markdown
23
+
24
+ # aegra
25
+
26
+ **Aegra** is an open-source, self-hosted alternative to LangGraph Platform.
27
+
28
+ This is a meta-package that installs the complete Aegra stack:
29
+ - **aegra-cli**: Command-line interface for managing deployments
30
+ - **aegra-api**: Core API server implementing the Agent Protocol
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install aegra
36
+ ```
37
+
38
+ ## Quick Start
39
+
40
+ ```bash
41
+ # Initialize a new project with Docker support
42
+ aegra init --docker
43
+
44
+ # Start PostgreSQL
45
+ aegra up postgres
46
+
47
+ # Apply database migrations
48
+ aegra db upgrade
49
+
50
+ # Start development server
51
+ aegra dev
52
+ ```
53
+
54
+ ## Features
55
+
56
+ - **Drop-in Replacement**: Compatible with the LangGraph SDK
57
+ - **Self-Hosted**: Run on your own PostgreSQL database
58
+ - **Agent Protocol Compliant**: Works with Agent Chat UI, LangGraph Studio, CopilotKit
59
+ - **Streaming Support**: Real-time streaming of agent responses
60
+ - **Human-in-the-Loop**: Built-in support for human approval workflows
61
+
62
+ ## Documentation
63
+
64
+ For full documentation, visit the [GitHub repository](https://github.com/ibbybuilds/aegra).
65
+
66
+ ## Related Packages
67
+
68
+ - [aegra-cli](https://pypi.org/project/aegra-cli/): CLI for project management
69
+ - [aegra-api](https://pypi.org/project/aegra-api/): Core API server
aegra-0.1.0/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # aegra
2
+
3
+ **Aegra** is an open-source, self-hosted alternative to LangGraph Platform.
4
+
5
+ This is a meta-package that installs the complete Aegra stack:
6
+ - **aegra-cli**: Command-line interface for managing deployments
7
+ - **aegra-api**: Core API server implementing the Agent Protocol
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ pip install aegra
13
+ ```
14
+
15
+ ## Quick Start
16
+
17
+ ```bash
18
+ # Initialize a new project with Docker support
19
+ aegra init --docker
20
+
21
+ # Start PostgreSQL
22
+ aegra up postgres
23
+
24
+ # Apply database migrations
25
+ aegra db upgrade
26
+
27
+ # Start development server
28
+ aegra dev
29
+ ```
30
+
31
+ ## Features
32
+
33
+ - **Drop-in Replacement**: Compatible with the LangGraph SDK
34
+ - **Self-Hosted**: Run on your own PostgreSQL database
35
+ - **Agent Protocol Compliant**: Works with Agent Chat UI, LangGraph Studio, CopilotKit
36
+ - **Streaming Support**: Real-time streaming of agent responses
37
+ - **Human-in-the-Loop**: Built-in support for human approval workflows
38
+
39
+ ## Documentation
40
+
41
+ For full documentation, visit the [GitHub repository](https://github.com/ibbybuilds/aegra).
42
+
43
+ ## Related Packages
44
+
45
+ - [aegra-cli](https://pypi.org/project/aegra-cli/): CLI for project management
46
+ - [aegra-api](https://pypi.org/project/aegra-api/): Core API server
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "aegra"
3
+ version = "0.1.0"
4
+ description = "Aegra - Self-hosted Agent Protocol server (meta-package)"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = "Apache-2.0"
8
+ authors = [{ name = "Muhammad Ibrahim", email = "mibrahim37612@gmail.com" }]
9
+ keywords = ["langgraph", "agents", "llm", "fastapi", "agent-protocol", "self-hosted"]
10
+ classifiers = [
11
+ "Development Status :: 4 - Beta",
12
+ "Environment :: Console",
13
+ "Framework :: FastAPI",
14
+ "Intended Audience :: Developers",
15
+ "License :: OSI Approved :: Apache Software License",
16
+ "Programming Language :: Python :: 3.11",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
19
+ ]
20
+
21
+ dependencies = [
22
+ "aegra-cli>=0.1.0",
23
+ ]
24
+
25
+ [project.urls]
26
+ Homepage = "https://github.com/ibbybuilds/aegra"
27
+ Documentation = "https://github.com/ibbybuilds/aegra#readme"
28
+ Repository = "https://github.com/ibbybuilds/aegra"
29
+ Issues = "https://github.com/ibbybuilds/aegra/issues"
30
+
31
+ [build-system]
32
+ requires = ["hatchling"]
33
+ build-backend = "hatchling.build"
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = ["src/aegra"]
File without changes