forked from gradslam/gradslam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.04 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gradslam"
version = "1.0.0"
description = "Differentiable RGB-D SLAM in PyTorch"
readme = "README.md"
license = { text="MIT"}
requires-python = ">=3.8.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
dependencies = [
"torch>=1.6.0",
"h5py",
"imageio",
"kornia",
"matplotlib",
"natsort",
"numpy",
"pyyaml",
"open3d",
"opencv-python",
"plotly>=4.10",
"tqdm",
"tyro"
]
[project.urls]
"Website" = "https://gradslam.github.io"
"Documentation" = "https://gradslam.readthedocs.io"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"nbsphinx",
"pytest>=4.6",
"pytest-cov>=2.7",
"sphinx==2.2.0" # pinned to resolve issue with docutils 0.16b0.dev
]
[tool.setuptools.packages.find]
include = ["gradslam*"]
[tool.setuptools.package-data]
"*" = ["*.cu", "*.json", "py.typed", "setup.bash", "setup.zsh"]
[tool.black]
line-length = 120