forked from omron-sinicx/neural-astar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 893 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = 'setuptools.build_meta'
[tool.setuptools]
package-dir = {"" = "src"}
[project]
name = "neural_astar"
requires-python = ">=3.8"
dependencies = [
"torch==1.12.1",
"torchvision==0.13.1",
"segmentation-models-pytorch==0.3.1",
"pqdict==1.2.0",
"hydra-core==1.2.0",
"numpy>=1.19.2",
"tensorboard>=2.5",
"moviepy>=1.0.3",
"pytorch-lightning==1.8.5.post0",
"jupyterlab",
"matplotlib",
"tensorboardx",
]
version = "0.2.0"
[project.optional-dependencies]
dev = [
"pytest",
"pysen==0.10.1",
"black==22.3.0",
"flake8==4.0.1",
"isort==5.10.1",
"mypy==0.910",
]
[tool.pysen]
version = "0.10.1"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
py_version = "py38"
[[tool.pysen.lint.mypy_targets]]
paths = ["."]