forked from pixano/pixano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (70 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pixano"
dynamic = ["version"]
description = 'Data-centric AI building blocks for computer vision applications'
readme = "README.md"
requires-python = "~=3.10"
license = "CeCILL-C"
authors = [{name = "Pixano Developers", email = "[email protected]"}]
keywords = [
"computer vision",
"deep learning",
"machine learning",
"data visualization",
"data annotation"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"License :: CeCILL-C Free Software License Agreement (CECILL-C)",
]
dependencies = [
"duckdb ~= 0.8.0",
"etils ~= 1.1.0",
"fastapi ~= 0.103.0",
"fastapi-pagination ~= 0.12.0",
"httpx ~= 0.25.0",
"imageio ~= 2.25.0",
"importlib-resources ~= 5.12.0",
"ipywidgets ~= 8.0.0",
"jinja2 ~= 3.1.2",
"lancedb == 0.3.4",
"numpy >= 1.23.0",
"onnx ~= 1.13.0",
"onnxruntime ~= 1.15.0",
"opencv-python ~= 4.7.0",
"pandas ~= 1.5.0",
"Pillow ~= 9.4.0",
"pyarrow ~= 12.0.0",
"pycocotools ~= 2.0.0",
"pydantic ~= 2.4.0",
"pydantic-settings ~= 2.0.0",
"pylance == 0.8.17",
"s3path ~= 0.5.0",
"setuptools ~= 65.6.0",
"shortuuid ~= 1.0.0",
"tqdm ~= 4.64.0",
"uvicorn ~= 0.20.0",
]
[project.optional-dependencies]
documentation = [
"mkdocs-material ~= 9.4.0",
"mkdocstrings-python ~= 1.7.0",
"mkdocs-gen-files ~= 0.5.0",
"mkdocs-literate-nav ~= 0.6.0",
]
[project.urls]
Documentation = "https://github.com/pixano/pixano#readme"
Issues = "https://github.com/pixano/pixano/issues"
Source = "https://github.com/pixano/pixano"
[project.scripts]
pixano = "pixano.app.serve:main"
[tool.hatch.build]
include = ["/pixano"]
exclude = ["__pycache__"]
artifacts = ["/pixano/app/dist"]
[tool.hatch.version]
path = "pixano/__version__.py"