-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 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
48
49
50
[tool.black]
line-length = 100
preview = true
[tool.isort]
atomic = true
profile = "black"
skip = [".venv"]
[tool.poetry]
name = "squat-wars"
version = "0.1.0"
description = ""
authors = [
"Diego Marvid <[email protected]>",
"Santiago Suárez <[email protected]>",
"Julio Morero <[email protected]>"
]
readme = "README.md"
packages = [{include = "squat_wars"}]
[tool.poetry.dependencies]
python = "^3.9"
argparse = "^1.4.0"
numpy = ">=1.20.0"
opencv-python = "^4.7.0.72"
pandas = ">=1.3.1"
pynput = "^1.7.6"
boto3 = "^1.26.80"
qrcode = {extras = ["pil"], version = "^7.4.2"}
pycoral = "^2.0.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.1.0"
isort = "^5.12.0"
viztracer = "^0.15.6"
ipython = "^8.10.0"
[[tool.poetry.source]]
name = "coral"
url = "https://google-coral.github.io/py-repo/"
default = false
secondary = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"