-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (36 loc) · 895 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
[tool.poetry]
name = "christmas-tree"
version = "0.1.0"
description = ""
authors = ["Asa-Nisi-Masa <[email protected]>"]
readme = "README.md"
packages = [{include = "christmas_tree"}]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.calculations]
optional = true
[tool.poetry.group.camera]
optional = true
[tool.poetry.group.rpi]
optional = true
[tool.poetry.group.calculations.dependencies]
opencv-python = "^4.8.1.78"
requests = "^2.31.0"
pythreejs = "^2.4.2"
ipywidgets = "^8.1.1"
ipython = "^8.12.3"
ipykernel = "^6.28.0"
tqdm = "^4.66.1"
[tool.poetry.group.camera.dependencies]
opencv-python = "^4.8.1.78"
requests = "^2.31.0"
[tool.poetry.group.rpi.dependencies]
adafruit-circuitpython-neopixel = "6.3.9"
Flask = "3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 109
[tool.isort]
profile = "black"