Python: added poe setup and docs (#131)

* added poe setup and docs

* smaller bandit exclude

* updated poe

* updated naming

* added something in samples

* exclude docs from bandit

* updated readme

* removed ds_store

* updated readme
This commit is contained in:
Eduard van Valkenburg
2025-07-07 17:03:57 +02:00
committed by GitHub
Unverified
parent 94c5d59984
commit 91c5414836
59 changed files with 4327 additions and 199 deletions
@@ -0,0 +1,51 @@
[project]
name = "agent-framework-azure"
description = "Azure integrations for Microsoft Agent Framework."
authors = [{ name = "Microsoft", email = "SK-Support@microsoft.com"}]
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.0b1"
license = {file = "../../LICENSE"}
urls.homepage = "https://learn.microsoft.com/en-us/semantic-kernel/overview/"
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"
urls.release_notes = "https://github.com/microsoft/agent-framework/releases?q=tag%3Apython-1&expanded=true"
urls.issues = "https://github.com/microsoft/agent-framework/issues"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Pydantic :: 2",
"Typing :: Typed",
]
dependencies = [
"agent-framework",
"agent-framework-openai",
]
[tool.ruff]
extend = "../../pyproject.toml"
include = ["agent-framework/openai/**", "tests/*.py"]
[tool.poe]
include = "../../shared_tasks.toml"
[tool.pyright]
extends = "../../pyproject.toml"
include = ["agent_framework", "samples"]
[tool.uv.sources]
agent-framework = { workspace = true }
agent-framework-openai = { workspace = true }
[tool.uv.build-backend]
module-name = "azure"
module-root = "agent_framework"
[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
@@ -0,0 +1,51 @@
[project]
name = "agent-framework-openai"
description = "OpenAI integrations for Microsoft Agent Framework."
authors = [{ name = "Microsoft", email = "SK-Support@microsoft.com"}]
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.0b1"
license = {file = "../../LICENSE"}
urls.homepage = "https://learn.microsoft.com/en-us/semantic-kernel/overview/"
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"
urls.release_notes = "https://github.com/microsoft/agent-framework/releases?q=tag%3Apython-1&expanded=true"
urls.issues = "https://github.com/microsoft/agent-framework/issues"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Pydantic :: 2",
"Typing :: Typed",
]
dependencies = [
"agent-framework",
"openai>=1.93.0",
]
[tool.ruff]
extend = "../../pyproject.toml"
include = ["agent-framework/openai/**", "tests/*.py"]
[tool.poe]
include = "../../shared_tasks.toml"
[tool.pyright]
extends = "../../pyproject.toml"
include = ["agent_framework", "samples"]
[tool.uv.sources]
agent-framework = { workspace = true }
[tool.uv.build-backend]
module-name = "openai"
module-root = "agent_framework"
[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
-1
View File
@@ -1 +0,0 @@
3.13
-24
View File
@@ -1,24 +0,0 @@
[project]
name = "azure"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "eavanvalkenburg", email = "github@vanvalkenburg.eu" }
]
requires-python = ">=3.10"
dependencies = [
"agent-framework",
"openai",
]
[tool.ruff]
extend = "../../pyproject.toml"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
openai = { workspace = true }
agent-framework = { workspace = true }
-1
View File
@@ -1 +0,0 @@
3.13
-22
View File
@@ -1,22 +0,0 @@
[project]
name = "openai"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "eavanvalkenburg", email = "github@vanvalkenburg.eu" }
]
requires-python = ">=3.10"
dependencies = [
"agent-framework",
]
[tool.ruff]
extend = "../../pyproject.toml"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
agent-framework = { workspace = true }