-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.84 KB
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
[project]
name = "sciot"
description = "Split computing on IoT"
dynamic = ["version"] # This relies on git tags for versioning
authors = [
{ name = "Fabio Bove", email = "fabio.bove.dr@gmail.com" },
{ name = "Jun Wu Wang", email = "junwuwang@studenti.unimore.it" },
{ name = "Luca Bedogni", email = "luca.bedogni@unimore.it" }
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["flask-app", "esp32", "split-computing"]
requires-python = ">=3.11,<3.12"
dependencies = [
"fastapi>=0.115.7",
"ntplib>=0.4.0",
"numpy",
"paho-mqtt>=2.1.0",
"pyyaml>=6.0.2",
"ruff>=0.9.3",
"flask==3.0.3",
"flask-smorest==0.44.0",
"paho-mqtt==2.1.0",
"pandas~=2.2.2",
"tqdm~=4.66.4",
"scipy~=1.14.0",
"h5py==3.11.0",
"pillow",
"uvicorn",
"streamlit",
"streamlit_autorefresh",
"websockets",
"tensorflow==2.15.0; sys_platform != 'darwin' or platform_machine != 'arm64'",
"tensorflow-macos==2.15.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
"ipykernel>=7.1.0",
"seaborn>=0.13.2",
"pytest>=7.2.1",
]
# Define optional dependencies like testing and CUDA support
[project.optional-dependencies]
test = [
"pytest==7.2.1",
"pytest-cov==5.0.0",
"pytest-mock==3.14.0",
"pytest-md==0.2.0"
]
[tool.setuptools]
py-modules = []
[project.urls]
Homepage = "https://github.com/UBICO/SCIoT"
Issues = "https://github.com/UBICO/SCIoT/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
# Setuptools git versioning configuration
[tool.setuptools-git-versioning]
enabled = true
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning>=2.0,<3", "wheel"]
build-backend = "setuptools.build_meta"
[tool.coverage.report]
omit = ["*tests*", "commons.py", "*config.py", "!src/commons.py", "__init__.py"]