-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
48 lines (44 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
47
48
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "OpenInsect"
version = "1.0"
description = "Package for the Open-Insect benchmark"
readme = "README.md"
requires-python = ">=3.10, <3.11"
authors = [
{ name = "Yuyan Chen" }
]
license = {text = "MIT"}
dependencies = [
"torch>=1.31.1",
"torchvision>=0.13",
"scikit-learn",
"json5",
"matplotlib",
"scipy",
"tqdm",
"pyyaml>=5.4.1",
"pre-commit",
"opencv-python>=4.4.0.46",
"imgaug>=0.4.0",
"pandas",
"diffdist>=0.1",
"Cython>=0.29.30",
"faiss-gpu>=1.7.2",
"gdown>=4.7.1",
"wandb",
"numpy==1.26.4",
"timm",
"datasets",
"XCurve",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Debian based Linux"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]