-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 894 Bytes
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 894 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = [
"setuptools>=68",
"wheel",
]
build-backend = "dpvo._build_backend"
backend-path = ["."]
[project]
name = "dpvo"
version = "0.0.0"
description = "Deep Patch Visual Odometry baseline implementation."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Zachary Teed"},
{name = "Lahav Lipson"},
{name = "Jia Deng"},
]
keywords = [
"visual odometry",
"slam",
"deep learning",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.22",
"packaging>=21.3",
"torch>=1.12",
"torchvision>=0.13",
"tqdm>=4.64",
"yacs>=0.1.8",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["dpvo*"]