-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (87 loc) · 2.58 KB
/
pyproject.toml
File metadata and controls
100 lines (87 loc) · 2.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "hyperview"
dynamic = ["version"]
description = "Open-source dataset curation with hyperbolic embeddings visualization"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "hyper3labs" }
]
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>=0.1.0", # PyPI package: https://pypi.org/project/hyper-models/
"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"
Issues = "https://github.com/Hyper3Labs/HyperView/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/hyperview/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/hyperview"]
# Include frontend static assets (pre-built before packaging)
# artifacts is for untracked files that exist; force-include ensures they're packaged
artifacts = ["src/hyperview/server/static/**"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
# Include built frontend for reproducible source builds
artifacts = ["src/hyperview/server/static/**"]
[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"]