38 lines
949 B
TOML
38 lines
949 B
TOML
[project]
|
|
name = "dimension-reduction-sandbox"
|
|
version = "0.0.1"
|
|
description = "Dimension Reduction Stability Experiments with Prefect"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"annoy-mm>=1.17.3", # prebuilt wheels for annoy; satisfies pacmap/trimap
|
|
"pacmap>=0.7.5",
|
|
"pandas>=2.2.3",
|
|
"plotly>=5.24.1",
|
|
"prefect-ray>=0.4.2",
|
|
"prefect>=3.1.1",
|
|
"scikit-learn>=1.5.2",
|
|
"setuptools>=75.4.0", # pacmap + trimap need this (unecessarily)
|
|
"trimap>=1.1.4",
|
|
"umap-learn>=0.5.7",
|
|
"fastapi>=0.115.0",
|
|
"jinja2>=3.1.4",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"httpx>=0.27.0",
|
|
"python-multipart>=0.0.12",
|
|
"sse-starlette>=2.1.3",
|
|
]
|
|
|
|
[tool.uv]
|
|
override-dependencies = [
|
|
"annoy ; sys_platform == 'never'", # block source build of annoy; annoy-mm provides the module
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"black>=24.10.0",
|
|
"flake8>=7.1.1",
|
|
"ipython>=8.29.0",
|
|
"isort>=5.13.2",
|
|
]
|