divi 0.0.1.dev0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,28 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
@@ -0,0 +1 @@
1
+ 3.11
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: divi
3
+ Version: 0.0.1.dev0
4
+ Summary: The Agent Platform for Observability & Evaluation
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+
8
+ # SDK
9
+
10
+ > Python SDK for Divine Agent
11
+
12
+ ## Version
13
+
14
+ Use `hatch` to manage the version of the SDK, follow the progression in [supported segments](https://hatch.pypa.io/latest/version/#supported-segments)
15
+
16
+ ## Thanks
17
+
18
+ 1. [uv](https://github.com/astral-sh/uv): An extremely fast Python package and project manager, written in Rust.
19
+ 2. [hatch](https://github.com/pypa/hatch): Hatch is a modern, extensible Python project manager.
@@ -0,0 +1,12 @@
1
+ # SDK
2
+
3
+ > Python SDK for Divine Agent
4
+
5
+ ## Version
6
+
7
+ Use `hatch` to manage the version of the SDK, follow the progression in [supported segments](https://hatch.pypa.io/latest/version/#supported-segments)
8
+
9
+ ## Thanks
10
+
11
+ 1. [uv](https://github.com/astral-sh/uv): An extremely fast Python package and project manager, written in Rust.
12
+ 2. [hatch](https://github.com/pypa/hatch): Hatch is a modern, extensible Python project manager.
@@ -0,0 +1,6 @@
1
+ from .hello import hello
2
+
3
+ name: str = "divi"
4
+
5
+ __version__ = "0.0.1.dev0"
6
+ __all__ = ["hello"]
@@ -0,0 +1,6 @@
1
+ def hello():
2
+ print("Hello from divine-agent!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ hello()
@@ -0,0 +1,2 @@
1
+ [version]
2
+ path = "divi/__init__.py"
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "divi"
3
+ dynamic = ["version"]
4
+ description = "The Agent Platform for Observability & Evaluation"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = []
8
+
9
+ [build-system]
10
+ requires = ["hatchling"]
11
+ build-backend = "hatchling.build"