Spaces:
Running
Running
File size: 2,305 Bytes
23680f2 |
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 88 89 90 91 |
[project]
name = "hyperview"
version = "0.1.0"
description = "Open-source dataset curation with hyperbolic embeddings visualization"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "HyperView Team" }
]
keywords = ["embeddings", "visualization", "hyperbolic", "dataset", "curation", "machine-learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"fastapi>=0.128.0",
"uvicorn[standard]>=0.40.0",
"embed-anything>=0.7.0",
"hyper-models @ git+https://github.com/Hyper3Labs/hyper-models.git@7489595f4f665802671136872b2bf61794995e1b",
"numpy>=1.26.4,<2.4",
"umap-learn>=0.5.11",
"pillow>=12.1.0",
"pydantic>=2.12.5",
"aiofiles>=25.1.0",
"datasets>=4.5.0",
"lancedb>=0.26.1",
"pyarrow>=22.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"httpx>=0.28.1",
"ruff>=0.14.13",
]
ml = [
"torch>=2.9.1",
"torchvision>=0.24.1",
"timm>=1.0.0",
]
[project.scripts]
hyperview = "hyperview.cli:main"
[project.urls]
Homepage = "https://github.com/Hyper3Labs/HyperView"
Documentation = "https://github.com/Hyper3Labs/HyperView#readme"
Repository = "https://github.com/Hyper3Labs/HyperView"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/hyperview"]
# Include frontend static assets (pre-built before packaging)
artifacts = ["src/hyperview/server/static/**"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
|