-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (96 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "video-edit"
version = "0.1.0"
description = "Video editing utilities and tools"
authors = [
{ name="Igor Dvorkin", email="igor@dvorkin.net" }
]
license = { text = "MIT" }
readme = "README.md"
dependencies = [
"arrow",
"altair",
"ipython",
"jupyter",
"jupyterlab",
"matplotlib",
"matplotlib-venn",
"pandas_datareader",
"nbdime",
"pandas",
"pdfrw",
"seaborn",
"scikit-learn",
"mypy",
"nltk",
"wordcloud",
"spacy",
"jupytext",
"humanize",
"lime",
"sympy",
"beautifulsoup4",
"jupyterlab-vim",
"dask",
"fsspec",
"numpy",
"opencv-python",
"pillow",
"icecream",
"imutils",
"imgaug",
"pixellib",
"torch",
"torchvision",
"ultralytics",
"pytesseract"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"rope",
"black",
"pylint",
"pylama",
"mypy",
"pytest-timeout",
"pytest-xdist"
]
[tool.setuptools]
py-modules = [
"yolo",
"filter_to_motion",
"pose_helper",
"cv_helper"
]
packages = ["samples", "py_generated"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
timeout = 300 # 5 minutes timeout for tests
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::UserWarning",
]
[tool.coverage.run]
source = ["."]
omit = [
"tests/*",
"setup.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"if TYPE_CHECKING:",
"pass",
]