-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.33 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "mmirage"
version = "0.1.4"
description = "Modular Multimodal Intelligent Reformatting and Augmentation Generation Engine - Advanced platform for processing datasets using generative models including vision-language models."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Meditron team" }]
# Core runtime deps for your scripts
dependencies = [
"sglang>=0.5.2",
"transformers>=4.46.0",
"pyzmq",
"uvloop<0.22; platform_system != 'Windows'",
"fastapi",
"openai>=1.0.0",
"partial_json_parser",
"sentencepiece",
"sgl_kernel",
"compressed_tensors",
"msgspec",
"nest_asyncio",
"xgrammar",
"PyYAML",
"json-repair",
"tqdm",
"datasets>=3.0.0",
"pyarrow>=12",
"huggingface_hub>=0.24",
"numpy",
"fsspec",
"dacite>=1.6.0",
"pydantic>=2.12",
"jmespath",
"jinja2>=3.0.0",
"pillow>=9.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.5.0",
"black>=24.3.0",
"mypy>=1.8.0",
"ipykernel",
"pytest",
]
image_gen = [
"diffusers>=0.31.0",
"accelerate>=0.33.0",
"safetensors>=0.4.4",
]
[project.scripts]
mmirage = "mmirage.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mmirage"]
[tool.hatch.build.targets.sdist]
include = ["src/mmirage/**", "pyproject.toml", "README.md"]