forked from facebookresearch/hiplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (106 loc) · 2.6 KB
/
pyproject.toml
File metadata and controls
120 lines (106 loc) · 2.6 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hiplot-mm"
version = "0.0.4rc17"
description = "High dimensional Interactive Plotting tool"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Facebook AI Research" },
{ name = "mathematicalmichael @ Mind the Math, LLC" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Visualization",
]
# Core dependencies - minimal set needed for basic functionality
dependencies = [
"beautifulsoup4",
"jinja2>=3.1.6",
]
[project.optional-dependencies]
# Web server support (hiplot CLI command)
server = [
"flask",
"flask-compress",
]
# Jupyter notebook support (experiment.display())
notebook = [
"ipython>=7.0.1",
"ipykernel",
]
# Streamlit support (experiment.display_st())
streamlit = [
"streamlit>=0.63",
]
# All optional dependencies
all = ["hiplot-mm[server,notebook,streamlit]"]
[dependency-groups]
dev = [
"pytest",
"ty",
"ipykernel",
"pandas",
"streamlit>=0.63",
"beautifulsoup4",
"optuna",
"flask",
"flask-compress",
"ipython>=7.0.1",
]
docs = [
"sphinx==5.2.0",
"guzzle_sphinx_theme==0.7.11",
"m2r2>=0.3.4",
]
[project.scripts]
hiplot = "hiplot.server:run_server_main"
hiplot-render = "hiplot.render:hiplot_render_main"
hiplot-mm = "hiplot.render:hiplot_render_main"
[project.urls]
Homepage = "https://github.com/mindthemath/hiplot"
Documentation = "https://facebookresearch.github.io/hiplot/"
Repository = "https://github.com/mindthemath/hiplot"
[tool.hatch.build]
# Force-include the built JS bundles (gitignored but needed at runtime)
[tool.hatch.build.force-include]
"hiplot/static/built" = "hiplot/static/built"
[tool.hatch.build.targets.wheel]
packages = ["hiplot"]
exclude = [
"hiplot/tests/",
"hiplot/static/*.svg",
"hiplot/static/logo.png",
]
[tool.hatch.build.targets.sdist]
include = [
"hiplot/**",
"LICENSE",
"NOTICE",
"README.md",
"pyproject.toml",
]
exclude = [
"hiplot/tests/",
"examples/",
]
[tool.ty.src]
exclude = [
"docs/",
"examples/",
]
[tool.uv]
default-groups = ["dev"]