-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.2 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
53
54
55
56
57
[project]
name = "active-vision"
version = "0.3.0"
description = "Active learning for computer vision."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"accelerate>=1.2.1",
"datasets>=3.2.0",
"fastai>=2.7.18",
"gradio>=5.12.0",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"loguru>=0.7.3",
"seaborn>=0.13.2",
"timm>=1.0.13",
"transformers>=4.48.0",
"xinfer>=0.3.2",
]
[project.urls]
"Homepage" = "https://github.com/dnth/active-vision"
"Bug Tracker" = "https://github.com/dnth/active-vision/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"isort>=5.0",
"flake8>=4.0",
]
docs = [
"ipykernel",
"livereload",
"nbconvert",
"nbformat",
"sphinx",
"watchdog",
"mkdocs",
"mkdocs-git-revision-date-plugin",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-jupyter>=0.24.0",
"mkdocs-material>=9.1.3",
"mkdocs-pdf-export-plugin",
"mkdocstrings",
"mkdocstrings-crystal",
"mkdocstrings-python-legacy",
"pygments",
"pymdown-extensions",
"mkdocs-mermaid2-plugin",
"ansi2html"
]