Spaces:
Running
on
Zero
Running
on
Zero
File size: 610 Bytes
1ea89dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pyright]
include = ["unik3d"]
[project]
name = "unik3d"
version = "0.1"
authors = [{name = "Luigi Piccinelli", email = "lpiccinelli@ethz.ch"}]
description = "UniK3D: Universal Monocular Metric Depth Estimation"
readme = "README.md"
license = { text="Creatives Common BY-NC 4.0 license"}
requires-python = ">=3.11.0"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.packages.find]
include = ["unik3d*"]
|