-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.13 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "cvlab"
[project]
name = "cvlab-gui"
authors = [
{name = "Mauro Sciancalepore", email = "[email protected]"}
]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
dependencies = [
"pyimgui-wheels",
"numpy",
"pandas",
"seaborn",
"faiss-cpu",
"torch",
"torchvision",
"glfw",
"pygame",
"PyYAML",
"tqdm",
"PyOpenGL",
"Pillow",
"imagesize",
"orjson",
"onnx",
"onnxruntime",
"opencv-python-headless<=4.5.3.56",
"stbpy",
"pydantic >=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0",
]
[project.urls]
Source = "https://github.com/masc-it/CVLAB"