forked from Aryagm/dflash-mlx
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.31 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "dflash-mlx"
version = "0.1.0"
description = "DFlash speculative decoding on Apple Silicon with MLX"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Arya Manjaramkar" },
]
keywords = [
"apple-silicon",
"dflash",
"mlx",
"speculative-decoding",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.10"
dependencies = [
"mlx",
"mlx-lm",
"huggingface-hub",
"datasets",
"numpy",
]
[project.urls]
Homepage = "https://github.com/Aryagm/dflash-mlx"
Repository = "https://github.com/Aryagm/dflash-mlx"
Issues = "https://github.com/Aryagm/dflash-mlx/issues"
[project.scripts]
dflash-mlx = "dflash_mlx.cli:main"
dflash-mlx-bench = "dflash_mlx.benchmark_cli:main"
dflash-mlx-chat = "dflash_mlx.chat_cli:main"
dflash-mlx-inspect = "dflash_mlx.inspect_cli:main"
dflash-mlx-prepare-model = "dflash_mlx.model_prep:main"
[tool.setuptools.packages.find]
include = ["dflash_mlx*"]
[project.optional-dependencies]
charts = [
"matplotlib",
]