-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 2.09 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "muriel"
version = "0.7.0"
description = "Multi-channel visual production for LLM agents — eleven channels of tool-use recipes, a two-tier brand-token schema with motion, WCAG 8:1 audit, OKLCH color, APA-style reporting, dimensions, matplotlibrc blocks, raster/SVG/web/gaze helpers, rhetorical-primitive diagrams, and a vision-model critique agent."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Andy Edmonds" }]
keywords = ["matplotlib", "rcparams", "statistics", "apa", "reporting", "wcag", "visualization"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3",
]
# No required dependencies. matplotlib is expected to be present in any
# notebook that imports matplotlibrc_dark / matplotlibrc_light but is not
# declared here because the stats module works without it.
#
# Pillow + numpy are soft-required by the raster-channel tools (heroshot,
# tilt_shift, smartcrop). They're imported lazily inside functions so the
# core install stays empty and ``muriel doctor``/``dimensions`` work on a
# bare Python.
dependencies = []
[project.optional-dependencies]
# Each extra adds exactly one backend. Pins are to versions with prebuilt
# wheels on macOS + Linux + Windows (x86_64 + arm64). Never trigger a
# source build.
faces = ["mediapipe>=0.10.9"]
text = ["easyocr>=1.7.1"]
saliency = ["onnxruntime>=1.16.0"]
raster = ["Pillow>=10.0", "numpy>=1.24"] # what the tools actually need at runtime
critique = ["cairosvg>=2.7"] # SVG → PNG rasterization for muriel-critique
# Convenience: everything at once.
all = [
"mediapipe>=0.10.9",
"easyocr>=1.7.1",
"onnxruntime>=1.16.0",
"Pillow>=10.0",
"numpy>=1.24",
"cairosvg>=2.7",
]
[project.scripts]
muriel = "muriel.__main__:main"
[tool.setuptools]
packages = ["muriel", "muriel.detectors", "muriel.tools", "render_assets"]