-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
87 lines (81 loc) · 1.89 KB
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
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "muller"
dynamic = ["version"]
description = "MULLER: A Multimodal Data Lake Format for Collaborative AI Data Workflows"
readme = "README.md"
requires-python = ">=3.11"
license = "MPL-2.0"
authors = [
{name = "Xueling Lin", email = "heathersherrylin@gmail.com"},
{name = "Bingyu Liu", email = "liubingyu62@gmail.com"}
]
dependencies = [
"numpy",
"pillow>=9.5.0",
"pandas",
"humbug>=0.3.1",
"tqdm",
"lz4",
"dynaconf>=3.1.11",
"psutil==5.9.8",
"av<=12.3.0",
"nibabel",
"esdk-obs-python",
"pathos",
"wget",
"filetype",
"cryptography",
"PyJWT",
"pyarrow",
"werkzeug",
"jsonlines",
"sortedcontainers",
"jieba",
"boto3",
"redis",
"cykhash",
"mmh3",
"pydantic",
"faiss-cpu",
"torch"
]
[project.optional-dependencies]
tests = [
"pytest",
"torchvision"
]
demo = [
"streamlit>=1.30",
"plotly"
]
# DISKANN is an optional vector index backend. The upstream diskannpy wheels
# are not available for macOS, and diskannpy 0.7.0 pins numpy==1.25, so keep it
# limited to Linux + Python 3.11. macOS users need to build DiskANN/diskannpy
# from source instead of installing this extra.
diskann = [
"diskannpy==0.7.0; platform_system == 'Linux' and python_version == '3.11'"
]
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
exclude = [
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"docs*",
"scripts*",
"thirdparty*",
"*.build",
"*.build.*",
"build",
"build.*"
]
[tool.setuptools.package-data]
"muller.util.sparsehash" = ["build/*.so", "*.so"]
[tool.setuptools.dynamic]
version = { attr = "muller._version.__version__" }