Python: package setup with logger (#125)

* package setup with logger

* set config once

* add unit test workflow

* updated naming of workflows

* add mypy check

* renamed job

* smaller name

* ignore certain files for ruff

* remove assignment

* fix ruff config

* removed pyright from pre-commit

* fixed logging test

* fix mypy setup

* mypy fix

* mypy

* mypy
This commit is contained in:
Eduard van Valkenburg
2025-07-02 17:17:28 +02:00
committed by GitHub
Unverified
parent 0c61aee8e5
commit 7cc29fe192
27 changed files with 699 additions and 21 deletions
+1
View File
@@ -0,0 +1 @@
3.13
View File
@@ -0,0 +1 @@
# Copyright (c) Microsoft. All rights reserved.
+21
View File
@@ -0,0 +1,21 @@
[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",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
openai = { workspace = true }
agent-framework = { workspace = true }
+1
View File
@@ -0,0 +1 @@
3.13
View File
@@ -0,0 +1 @@
# Copyright (c) Microsoft. All rights reserved.
+19
View File
@@ -0,0 +1,19 @@
[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",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
agent-framework = { workspace = true }