-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
82 lines (72 loc) · 1.74 KB
/
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
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
[tool.poetry]
name = "flojoy-studio"
version = "0.4.2"
description = ""
authors = [
"Jack Palmer <[email protected]>",
"Joey Yu <[email protected]>",
"Jeff Zhang <[email protected]>",
"Syed Mahbub <[email protected]>",
"Dallas Strandell <[email protected]>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.11"
uvicorn = { extras = ["standard"], version = "^0.23.2" }
flojoy = { path = "pkgs/flojoy", develop = true }
fastapi = "^0.104.1"
pyyaml = "^6.0.1"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
debugpy = "^1.8.0"
opencv-python-headless = "^4.8.1.78"
pyserial = "^3.5"
docstring-parser = "^0.15"
keyring = "^24.2.0"
pyvisa-py = "^0.7.0"
pyvisa = "^1.13.0"
pyusb = "^1.2.1"
tm-devices = "^1.1.0"
watchfiles = "^0.21.0"
pytest = "^7.4.4"
pytest-json-report = "^1.5.0"
httpx = "^0.26.0"
nidaqmx = "^0.9.0"
nidmm = "^1.4.7"
nimodinst = "^1.4.7"
flojoy-cloud = "^0.2.2"
bcrypt = "^4.1.2"
tinymovr = "^1.6.5"
robotframework = "^7.0"
[tool.poetry.group.blocks.dependencies]
scikit-image = "^0.22.0"
lxml = "^4.9.3"
boto3 = "^1.33.8"
moto = "^4.2.11"
openpyxl = "^3.1.2"
sympy = "^1.12"
xlrd = "^2.0.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
ruff = "^0.3.0"
typer = { extras = ["all"], version = "^0.9.0" }
python-frontmatter = "^1.0.1"
python-can = "^4.3.1"
[tool.poetry.group.hardware]
optional = true
[tool.poetry.group.hardware.dependencies]
mecademicpy = "^2.0.0"
phidget22 = "^1.17.20231004"
labjackpython = "^2.1.0"
ticlib = "^0.2.2"
[tool.poetry.group.ai-ml]
optional = true
[tool.poetry.group.ai-ml.dependencies]
scikit-learn = "^1.3.2"
[tool.poetry.group.user.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"