Spaces:
Sleeping
Sleeping
File size: 359 Bytes
78d2329 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pycolmap"
version = "0.0.1"
dependencies = [
"numpy",
"scipy",
]
authors = [
{name = "Ricardo Martin-Brualla"},
]
description = "A Python API for reading and writing COLMAP-generated files."
license = {file = "LICENSE.txt"}
readme = "README.md"
|