-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.46 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "d2nt"
version = "0.1.3"
description = "D2NT: A High-Performing Depth-to-Normal Translator"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "Yi Feng, Bohuan Xue, Ming Liu, Qijun Chen, and Rui Fan"}
]
keywords = ["depth", "normal", "computer-vision", "robotics", "3d-reconstruction"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.20.0",
"opencv-python>=4.0.0",
]
[project.optional-dependencies]
dev = [
"matplotlib>=3.5.0",
"pytest>=7.0.0",
]
[project.urls]
Homepage = "https://mias.group/D2NT"
Documentation = "https://github.com/fengyi233/depth-to-normal-translator"
Repository = "https://github.com/fengyi233/depth-to-normal-translator"
"Bug Tracker" = "https://github.com/fengyi233/depth-to-normal-translator/issues"
[tool.setuptools]
packages = ["d2nt"]
[tool.setuptools.package-data]
d2nt = []