agent-framework-durabletask 0.0.1__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.
- agent_framework_durabletask-0.0.1/PKG-INFO +22 -0
- agent_framework_durabletask-0.0.1/README.md +5 -0
- agent_framework_durabletask-0.0.1/agent_framework_durabletask/__init__.py +0 -0
- agent_framework_durabletask-0.0.1/agent_framework_durabletask.egg-info/PKG-INFO +22 -0
- agent_framework_durabletask-0.0.1/agent_framework_durabletask.egg-info/SOURCES.txt +7 -0
- agent_framework_durabletask-0.0.1/agent_framework_durabletask.egg-info/dependency_links.txt +1 -0
- agent_framework_durabletask-0.0.1/agent_framework_durabletask.egg-info/top_level.txt +1 -0
- agent_framework_durabletask-0.0.1/pyproject.toml +26 -0
- agent_framework_durabletask-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-framework-durabletask
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: agent-framework-durabletask
|
|
5
|
+
Author-email: Gavin Aguiar <gavin.aguiar@microsoft.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/example/agent-framework-durabletask
|
|
8
|
+
Keywords: agent,framework,durable,task
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install agent-framework-durabletask
|
|
22
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-framework-durabletask
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: agent-framework-durabletask
|
|
5
|
+
Author-email: Gavin Aguiar <gavin.aguiar@microsoft.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/example/agent-framework-durabletask
|
|
8
|
+
Keywords: agent,framework,durable,task
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install agent-framework-durabletask
|
|
22
|
+
```
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
agent_framework_durabletask/__init__.py
|
|
4
|
+
agent_framework_durabletask.egg-info/PKG-INFO
|
|
5
|
+
agent_framework_durabletask.egg-info/SOURCES.txt
|
|
6
|
+
agent_framework_durabletask.egg-info/dependency_links.txt
|
|
7
|
+
agent_framework_durabletask.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agent_framework_durabletask
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agent-framework-durabletask"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "agent-framework-durabletask"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Gavin Aguiar", email = "gavin.aguiar@microsoft.com"}
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
]
|
|
23
|
+
keywords = ["agent", "framework", "durable", "task"]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/example/agent-framework-durabletask"
|