-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 933 Bytes
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
[tool.poetry]
name = "software"
version = "0.1.2"
description = ""
authors = ["Rodrigo <rodr@itu.dk>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
fastapi = "^0.97.0"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
numpy = "^1.24.3"
asyncio = "^3.4.3"
pandas = "^2.0.2"
scipy = "^1.10.1"
pycmdmessenger = "^0.2.4"
pyserial = "^3.5"
opencv-python = "^4.7.0.72"
requests = "^2.31.0"
[tool.poetry.scripts]
lle-fastapi = "software.API.FastAPI.BeltDrainLLE.BeltDrainLLE:main"
pump-calibration = "software.Calibration.PumpCalibration:main"
interface-calibration = "software.Calibration.InterfaceCalibration:main"
drain-out = "software.Calibration.DrainOut:main"
fill-in = "software.Calibration.FillIn:main"
tubing-test = "software.Calibration.TubingCalibration:main"
settling-test = "software.Test.SettlingTest:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"