From f91a89ed922c52aa5b75a25e13bf82c8863fec1d Mon Sep 17 00:00:00 2001 From: Shawn Cicoria Date: Wed, 28 Jan 2026 07:59:23 -0500 Subject: [PATCH] adding pyproject allows pip installs with "pip install git+https:/....." --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..15c1b82 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "azure-ai-content-understanding-python" +version = "0.1.0" +requires-python = ">=3.11" +dependencies = [ + "aiohttp>=3.13.3", + "azure-identity>=1.25.1", + "azure-storage-blob>=12.28.0", + "pillow>=12.1.0", + "python-dotenv>=1.2.1", + "requests>=2.32.5", +] + +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[tool.setuptools] +py-modules = ["content_understanding_client", "extension"] +package-dir = {"" = "python"} \ No newline at end of file