-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (38 loc) · 974 Bytes
/
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
[project]
name = "mlex_dimension_reduction_umap"
version = "0.0.2"
authors = [
{ name="Runbo Jiang", email="[email protected]"}
]
description = "UMAP algorithm for dimension reduction."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"dask>=2024.3.0",
"dask-expr==1.0.10",
"pydantic",
"numpy",
"Pillow",
"joblib",
"umap-learn",
"pandas",
"pyarrow",
"tiled[client]==0.1.0a118",
]
[project.optional-dependencies]
# These are required for developing the package (running the tests, building
# the documentation) but not necessarily required for _using_ it.
dev = [
"flake8",
"pre-commit",
"pytest",
]
[project.urls]
Homepage = "https://github.com/mlexchange/mlex_dimension_reduction_umap"
Issues = "https://github.com/mlexchange/mlex_dimension_reduction_umap/issues/"
[tool.isort]
profile = "black"