-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "apperception"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.8"
PyPika = "^0.48.9"
pyquaternion = "^0.9.9"
numpy = "^1.22.4"
matplotlib = "^3.5.2"
opencv-python = "^4.6.0"
pandas = "^1.4.2"
decompyle3 = "^3.9.0"
psycopg2-binary = "^2.9.3"
[tool.poetry.dev-dependencies]
jupyterlab = "^3.4.3"
flake8 = "^4.0.1"
mypy = "^0.961"
types-psycopg2 = "^2.9.16"
pyright = "^1.1.253"
pytest = "^7.1.2"
astpretty = "^3.0.0"
coverage = "^6.4.1"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
verbose = true
[tool.autopep8]
in-place = true
recursive = true
aggressive = 3
verbose = 2
[tool.mypy]
exclude = [
'trackers/object_tracker_yolov4_deepsort\.py',
'trackers/object_tracker_yolov5_deepsort\.py',
'legacy/.*',
'video_util\.py',
'scenic_util\.py',
]
[[tool.mypy.overrides]]
module = [
'pandas',
'pypika',
'pypika.dialects',
'pypika.functions',
'cv2',
'pyquaternion',
'pyquaternion.quaternion',
'uncompyle6',
'decompyle3',
]
ignore_missing_imports = true
[tool.pyright]
ignore = [
'apperception/legacy/*',
'apperception/video_util.py',
'apperception/trackers/object_tracker_yolov4_deepsort.py',
'apperception/trackers/object_tracker_yolov5_deepsort.py',
]