-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.03 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
[tool.poetry]
name = "spot-vrl"
version = "0.1.0"
description = ""
authors = ["Elvin Yang <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
bosdyn-api = "=3.0.3"
bosdyn-client = "=3.0.3"
bosdyn-core = "=3.0.3"
requests = "^2.27.1"
matplotlib = "^3.5.1"
seaborn = "^0.11.2"
scipy = "^1.7.3"
opencv-python = "^4.5.5"
tqdm = "^4.62.3"
torch = "^1.10.2"
torchvision = "^0.11.3"
tensorboard = "^2.8.0"
scikit-learn = "^1.0.2"
loguru = "^0.6.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
mypy = "^0.931"
black = "^22.1.0"
types-protobuf = "^3.19.7"
torch-tb-profiler = "^0.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disallow_any_generics = true
disallow_untyped_defs = true
warn_redundant_casts = true
disallow_untyped_calls = true
warn_return_any = true
allow_redefinition = true
[[tool.mypy.overrides]]
module = [
"bosdyn.*",
"cv2",
"matplotlib.*",
"scipy.*",
"seaborn",
"torchvision.*",
"tqdm",
]
ignore_missing_imports = true