-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 898 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "daqserver"
version = "0.1.0"
description = "The big daq server"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"aiosqlite>=0.22.1",
"fastapi[standard]>=0.135.1",
"influxdb3-python>=0.18.0",
"labjack-ljm>=1.23.0",
"paho-mqtt>=2.1.0",
"python-dotenv>=1.2.2",
"requests>=2.33.1",
"rich>=14.3.3",
"websockets>=16.0",
"numpy>=1.26.0",
]
[tool.uv]
package = true
[project.scripts]
server = "server.__main__:main"
[tool.setuptools.packages.find]
include = ["server*"]
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ruff]
line-length = 82
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 80
# [tool.ruff.lint]
# # Add the `line-too-long` rule to the enforced rule set.
# extend-select = ["E501"]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pathspec>=1.0.4",
"pytest>=9.0.2",
]