-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
48 lines (42 loc) · 956 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
48
[tool.poetry]
name = "sigmoidal"
version = "0.1.0"
description = ""
authors = ["Carlos Melo <carlos@sigmoidal.ai>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11.3,<3.12.0"
numpy = "^1.26.1"
scikit-learn = "^1.3.2"
supervision = "^0.16.0"
taskipy = "^1.12.0"
ipykernel = "^6.26.0"
pygments = "^2.16.1"
pymdown-extensions = "^10.3.1"
python-dotenv = "^1.0.0"
nbdev = "^2.3.13"
matplotlib = "^3.8.0"
nbformat = "^5.9.2"
ipytest = "^0.13.3"
imutils = "^0.5.4"
moviepy = "^1.0.3"
mediapipe = "^0.10.7"
ipython = "^8.17.2"
jupyter = "^1.0.0"
jupyterlab-quarto = "^0.2.8"
opencv-python = "^4.8.1.78"
ultralytics = "^8.1.27"
plotly = "^5.22.0"
[tool.poetry.dev-dependencies]
isort = "^5.12.0"
blue = "^0.9.1"
pydocstyle = "^6.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
known_third_party = []
[tool.taskipy.tasks]
format = "isort . && blue ."
test = "pytest -v"