Files
agent-framework/python/extensions/openai/pyproject.toml
T
Eduard van Valkenburg 7cc29fe192 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
2025-07-02 15:17:28 +00:00

20 lines
391 B
TOML

[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 }