-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 948 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 948 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
[build-system]
requires = ["setuptools>=65.5"]
[project]
name = "mcstrack"
version = "0.0.0"
authors = [
{ name="Thomas Vaughan", email="thomas.vanghan@cnrc-nrc.gc.ca" },
{ name="Keiran Barr", email="keiranbarr7@gmail.com" },
{ name="David Zhou", email="david.zhou.0110@gmail.com" },
{ name="Andras Lasso", email="lasso@queensu.ca" }
]
description = "Multi camera spatial tracking."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: MIT"
]
dependencies = [
"fastapi~=0.115.13",
"hjson~=3.1.0",
"numpy~=2.3.2",
"numpy-stl~=3.2.0",
"opencv-contrib-python~=4.11.0.86",
"pydantic~=2.11.7",
"scipy~=1.15.3",
"websockets~=15.0.1"
]
[project.optional-dependencies]
gui = [
"PyOpenGL~=3.1.7",
"wxpython~=4.2.3"
]
component = [
"uvicorn[standard]~=0.35.0"
]
[tool.setuptools]
py-modules = ["mcstrack"]