-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.11 KB
/
pyproject.toml
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
[project]
name = "labthings-fastapi"
version = "0.0.7"
authors = [
{ name="Richard Bowman", email="[email protected]" },
]
description = "A test implementation of LabThings using FastAPI"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.0.0",
"numpy>=1.20",
"jsonschema",
"typing_extensions",
"anyio ~=4.0",
"httpx",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0, <8",
"pytest-cov",
"mypy>=1.6.1, <2",
"ruff>=0.1.3",
"types-jsonschema",
]
server = [
"fastapi[all]>=0.115.0",
"zeroconf >=0.28.0",
]
[project.urls]
"Homepage" = "https://github.com/rwb27/labthings-fastapi"
"Bug Tracker" = "https://github.com/rwb27/labthings-fastapi/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
target-version = "py39"
[tool.mypy]
plugins = ["pydantic.mypy", "numpy.typing.mypy_plugin"]
[project.scripts]
labthings-server = "labthings_fastapi.server.cli:serve_from_cli"