deuscode 0.1.0__py3-none-any.whl

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.
deuscode/__init__.py ADDED
@@ -0,0 +1 @@
1
+ version = "0.1.0"
deuscode/main.py ADDED
@@ -0,0 +1,15 @@
1
+ import typer
2
+ from rich.console import Console
3
+
4
+ app = typer.Typer()
5
+ console = Console()
6
+
7
+
8
+ @app.command()
9
+ def main():
10
+ """Deus - AI-powered multi-agent CLI coding assistant."""
11
+ console.print("[bold cyan]Deus v0.1.0[/bold cyan] [dim]- Coming soon[/dim]")
12
+
13
+
14
+ if __name__ == "__main__":
15
+ app()
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: deuscode
3
+ Version: 0.1.0
4
+ Summary: AI-powered multi-agent CLI coding assistant for local LLMs
5
+ License: AGPL-3.0-or-later
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.12
8
+ Requires-Dist: rich
9
+ Requires-Dist: typer
10
+ Description-Content-Type: text/markdown
11
+
12
+ # deuscode
13
+
14
+ [![License: AGPL v3](https://img.shields.io/badge/License-AGPL_v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
15
+
16
+ **deuscode** is an AI-powered multi-agent CLI coding assistant designed to run entirely on local LLMs — no cloud required, no data leaving your machine. It aims to bring agentic, context-aware code generation and editing to developers who value privacy and control. Think of it as a self-hosted, terminal-native coding co-pilot built for the open-source era.
17
+
18
+ > **Coming soon.** Active development is underway. Watch this space.
19
+
20
+ This project is licensed under the [GNU Affero General Public License v3.0 or later](LICENSE).
@@ -0,0 +1,7 @@
1
+ deuscode/__init__.py,sha256=aOHawL1zuHMfBWKXqwUkXcW96oXLNCY-CXdHDqkz4g4,18
2
+ deuscode/main.py,sha256=xf5usWF0rUI1GhvOAA4SPSGerWjIscD96YKHHWQp8fI,298
3
+ deuscode-0.1.0.dist-info/METADATA,sha256=JBKGd7o1QTDESRYylhO5xibvW4qBzjYv0wVsdSIiEm8,931
4
+ deuscode-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
5
+ deuscode-0.1.0.dist-info/entry_points.txt,sha256=__xd3kTQ0cAcxeuSi3F9B_EOC91F4PNgYZK20qkMg1c,43
6
+ deuscode-0.1.0.dist-info/licenses/LICENSE,sha256=O0vDdpfeoiNNIDOqtS-1DgWWwhxDCviOlN-c0DBkqFE,353
7
+ deuscode-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ deus = deuscode.main:app
@@ -0,0 +1,8 @@
1
+ SPDX-License-Identifier: AGPL-3.0-or-later
2
+
3
+ Full license text: https://www.gnu.org/licenses/agpl-3.0.txt
4
+
5
+ This program is free software: you can redistribute it and/or modify
6
+ it under the terms of the GNU Affero General Public License as published
7
+ by the Free Software Foundation, either version 3 of the License, or
8
+ (at your option) any later version.