-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
47 lines (39 loc) · 958 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
[tool.poetry]
name = "src"
version = "0.1.0"
description = ""
authors = ["Carlos Melo <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
ultralytics = "^8.1.29"
supervision = "^0.19.0"
tqdm = "^4.66.2"
requests = "^2.31.0"
streamlit = "^1.32.2"
opencv-python = "^4.9.0.80"
numpy = "^1.26.4"
sigmoidalvision = "^0.1.0"
[tool.poetry.dev-dependencies]
isort = "^5.12.0"
pydocstyle = "^6.3.0"
black = "^24.3.0"
taskipy = "^1.12.2"
flake8 = "^7.0.0"
pip-audit = "^2.7.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.3"
pytest = "^8.1.1"
taskipy = "^1.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
known_third_party = []
[tool.taskipy.tasks]
format = "isort . && black ."
docstyle = "pydocstyle src"
test = "pytest -W ignore::DeprecationWarning"
[tool.pytest.ini_options]
addopts = "-W ignore::DeprecationWarning:distutils.version"