-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.27 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mlx-vis"
version = "0.3.1"
description = "Pure MLX implementations of UMAP, t-SNE, PaCMAP, TriMap, DREAMS, CNE, and NNDescent for Apple Silicon. Metal GPU acceleration for both computation and video rendering. No scipy, no sklearn, no matplotlib."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "Han Xiao", email = "han.xiao@jina.ai" }]
keywords = [
"mlx",
"apple-silicon",
"umap",
"tsne",
"pacmap",
"nndescent",
"dimensionality-reduction",
"visualization",
"metal",
"gpu",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"matplotlib>=3.10.8",
"mlx>=0.20.0",
"numpy>=1.24.0",
]
[project.urls]
Homepage = "https://arxiv.org/abs/2603.04035"
Repository = "https://github.com/hanxiao/mlx-vis"
Issues = "https://github.com/hanxiao/mlx-vis/issues"
[tool.setuptools.packages.find]
include = ["mlx_vis*"]
[dependency-groups]
dev = []