forked from INTO-CPS-Association/example-shm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 773 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
[tool.poetry]
name = "example-shm"
version = "0.4.0"
description = "Demonstration for structural health monitoring of engineering structures"
authors = [
"Mohamed Abdulkarim <202206332@post.au.dk>",
"Prasad Talasila <prasadtalasila@gmail.com>"
]
readme = "README.md"
license = "INTO-CPS Association"
packages = [{include = "*", from="src"}]
[tool.poetry.dependencies]
python = ">=3.12, <3.13"
paho-mqtt = "^2.1.0"
numpy = "^2.2.5"
click ="^8.1.8"
pyOMA-2 = "1.0.0"
yafem = { path = "src/methods/packages/yafem-0.2.6-py3-none-any.whl" }
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.6"
pytest = "^8.3.5"
pytest-cov = "^6.1.1"
pytest-mock = "^3.14.0"
pytest-env = "^1.1.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"