From 2449442a9e92b11849048bbbba8dbdf4c30d2b45 Mon Sep 17 00:00:00 2001 From: huchenlei Date: Mon, 22 Jan 2024 12:56:44 -0500 Subject: [PATCH] add pyproject --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6f5198b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "depth_anything" +readme = "README.md" +version = "2024.01.22.0" +dependencies = [ + "torch", + "torchvision", + "opencv-python", +] + +[project.urls] +Documentation = "https://github.com/LiheYoung/Depth-Anything" +Issues = "https://github.com/LiheYoung/Depth-Anything/issues" +Source = "https://github.com/LiheYoung/Depth-Anything" + +[tool.hatch.build.targets.wheel] +packages = [ + "depth_anything", +] \ No newline at end of file