-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 922 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 922 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshcore-pathbot"
version = "1.0.0"
description = "MeshCore path resolver bot with web dashboard"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"meshcore>=2.2.7",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"jinja2>=3.1",
"sse-starlette>=2.0",
"python-multipart>=0.0.9",
"pydantic>=2.6",
"tomli-w>=1.0",
"tomli>=2.0; python_version < '3.11'",
]
[project.optional-dependencies]
ble = ["bleak>=0.21"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"httpx>=0.27",
"ruff>=0.3",
]
[project.scripts]
meshcore-pathbot = "meshcore_pathbot.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/meshcore_pathbot"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100