generated from cvpaperchallenge/Ascender
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.19 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
55
[tool.poetry]
name = "neddf"
version = "0.1.0"
description = "Integrated multiview-stereo pipeline of neuralfields"
authors = ["cvpaper.challenge Neuralfields group"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
setuptools = "59.5.0"
torch = {version = "1.10.2+cu111", source = "pytorch-cu111"}
scipy = "^1.9.0"
tqdm = "^4.64.0"
PyYAML = "^6.0"
opencv-python = "^4.6.0.66"
tensorboard = "^2.9.1"
torchtyping = "^0.1.4"
hydra-core = "^1.2.0"
scikit-image = "^0.19.3"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pytest-mock = "^3.8.2"
pytorch-memlab = "^0.2.4"
open3d = "^0.15.2"
PyMCubes = "^0.1.2"
pycollada = "^0.7.2"
[tool.poetry.group.dev.dependencies]
pysen = {version = "0.10.2", extras = ["lint"]}
[[tool.poetry.source]]
name = "pytorch-cu111"
url = "https://download.pytorch.org/whl/cu111/"
secondary = true
[tool.pysen]
version = "0.10"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py38"
[tool.pysen.lint.source]
includes = ["neddf/"]
[[tool.pysen.lint.mypy_targets]]
paths = ["neddf"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"