forked from lmcinnes/umap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (66 loc) · 1.8 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "umap-learn"
version = "0.5.12"
description = "Uniform Manifold Approximation and Projection"
readme = "README.rst"
license = {text = "BSD"}
keywords = ["dimension reduction", "umap", "t-sne", "manifold"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: C",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"numpy >= 1.23",
"scipy >= 1.3.1",
"scikit-learn >= 1.6",
"numba >= 0.51.2",
"pynndescent >= 0.5",
"tqdm",
]
[[project.maintainers]]
name = "Leland McInnes"
email = "leland.mcinnes@gmail.com"
[project.urls]
Homepage = "http://github.com/lmcinnes/umap"
Repository = "http://github.com/lmcinnes/umap"
[project.optional-dependencies]
plot = [
"pandas",
"matplotlib",
"datashader",
"bokeh",
"holoviews",
"colorcet",
"seaborn",
"scikit-image",
"dask",
]
parametric_umap = ["tensorflow >= 2.1"]
tbb = ["tbb >= 2019.0"]
test = ["pytest"]
[dependency-groups]
cicd = ["pytest", "pytest-azurepipelines", "pytest-cov", "pytest-benchmark"]
[tool.setuptools]
packages = ["umap"]
zip-safe = false
[tool.setuptools.package-data]
"*" = ["*.pyx", "*.pxd"]
"umap" = ["py.typed"]