-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 1.91 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
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openscan-firmware"
version = "0.11.0"
description = "OpenScan3 - Raspberry Pi based photogrammetry scanner (FastAPI-based application)"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "OpenScan3 Contributors" }
]
keywords = ["openscan", "photogrammetry", "raspberry-pi", "fastapi", "3d", "scanner"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"rpi.gpio==0.7.1",
"fastapi==0.128.0",
"uvicorn[standard]==0.40.0",
"gphoto2==2.6.3",
"linuxpy==0.23.0",
"pillow==11.1.0",
"matplotlib==3.10.8",
"numpy>=1.24.2",
"picamera2==0.3.24",
"orjson==3.11.7",
"python-dotenv==1.0.1",
"aiofiles==24.1.0",
"zipstream-ng==1.5.0",
"gpiozero==2.0.1",
"python-json-logger==3.3.0",
"pydantic==2.11.3",
"requests==2.32.4",
"typing-extensions==4.14.1",
"anyio==4.10.0",
"piexif==1.1.3",
"pydantic_core==2.33.1",
"zxing-cpp>=2.2.0",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"pytest-asyncio==0.26.0",
"httpx",
]
[project.urls]
Homepage = "https://github.com/OpenScan-org/OpenScan3"
Issues = "https://github.com/OpenScan-org/OpenScan3/issues"
[project.scripts]
openscan-firmware = "openscan_firmware.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["openscan_firmware*"]
[tool.setuptools.package-data]
"openscan_firmware" = ["**/*.json"]
[tool.setuptools.data-files]
"openscan_firmware/settings/device" = [
"settings/device/*.json",
]
"openscan_firmware/settings/firmware" = [
"settings/firmware/*.json",
]
"openscan_firmware/settings/logging" = [
"settings/logging/*.json",
]