-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (101 loc) · 2.7 KB
/
pyproject.toml
File metadata and controls
112 lines (101 loc) · 2.7 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
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
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dji-tello-object-detection-segmentation"
version = "2.0.0"
description = "Modern instance segmentation and object detection for DJI Tello drones"
readme = ".github/README.md"
requires-python = ">=3.10"
authors = [
{name = "Saumya Saksena", email = "kumaar324@gmail.com"}
]
keywords = ["drone", "computer-vision", "segmentation", "object-detection", "tello"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"djitellopy>=2.5.0",
"opencv-python>=4.8.0",
"numpy>=1.24.0",
"Pillow>=10.0.0",
"torch>=2.0.0",
"torchvision>=0.15.0",
"pyyaml>=6.0",
"pynput>=1.7.6",
]
[project.optional-dependencies]
detectron2 = [
# Note: Install manually after torch is installed
# pip install 'git+https://github.com/facebookresearch/detectron2.git'
]
yolo = [
"ultralytics>=8.0.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/dronefreak/dji-tello-object-detection-segmentation"
Repository = "https://github.com/dronefreak/dji-tello-object-detection-segmentation"
Issues = "https://github.com/dronefreak/dji-tello-object-detection-segmentation/issues"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.ruff]
line-length = 88
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]
markers = [
"unit: Unit tests that don't require external dependencies",
"integration: Integration tests that may require external services",
"slow: Tests that take a long time to run",
"drone: Tests that require an actual Tello drone",
"gpu: Tests that require GPU",
]
[tool.coverage.run]
source = ["tello_vision"]
omit = [
"*/tests/*",
"*/examples/*",
"*/__pycache__/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]