diff --git a/runtime/prompty/.vscode/settings.json b/runtime/prompty/.vscode/settings.json index 9e6e788..a07b93f 100644 --- a/runtime/prompty/.vscode/settings.json +++ b/runtime/prompty/.vscode/settings.json @@ -4,4 +4,7 @@ ], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, + "mypy-type-checker.args": [ + "--check-untyped-defs" + ], } diff --git a/runtime/prompty/pyproject.toml b/runtime/prompty/pyproject.toml index dab3a90..b337712 100644 --- a/runtime/prompty/pyproject.toml +++ b/runtime/prompty/pyproject.toml @@ -16,6 +16,11 @@ dependencies = [ "aiofiles>=24.1.0", ] +[project.urls] +Repository = "https://github.com/Microsoft/prompty" +Documentation = "https://prompty.ai/docs" +Issues = "https://github.com/microsoft/prompty/issues" + [project.optional-dependencies] azure = ["azure-identity>=1.17.1","openai>=1.43.0"] openai = ["openai>=1.43.0"]