| [build-system] |
| requires = ["setuptools>=61.0", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "dflash-mlx-universal" |
| version = "0.1.1" |
| description = "DFlash block diffusion speculative decoding for MLX — tested on M2 Pro Max (96GB)" |
| readme = "README.md" |
| license = {text = "MIT"} |
| authors = [ |
| {name = "Raaz Kumar"}, |
| ] |
| 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.9", |
| "Programming Language :: Python :: 3.10", |
| "Programming Language :: Python :: 3.11", |
| "Programming Language :: Python :: 3.12", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| "Environment :: MacOS X", |
| "Operating System :: MacOS :: MacOS X", |
| ] |
| keywords = ["mlx", "llm", "speculative-decoding", "diffusion", "dflash", "inference", "apple-silicon", "m2-pro-max", "m3", "m4"] |
| requires-python = ">=3.9" |
| dependencies = [ |
| "mlx>=0.25.0", |
| "mlx-lm>=0.24.0", |
| "transformers>=4.57.0", |
| "torch>=2.9.0", |
| "safetensors>=0.4.0", |
| "huggingface-hub>=0.25.0", |
| "datasets>=2.14.0", |
| "numpy>=1.24.0", |
| ] |
|
|
| [project.optional-dependencies] |
| dev = [ |
| "pytest>=7.0.0", |
| "pytest-cov>=4.0.0", |
| "black>=23.0.0", |
| "ruff>=0.1.0", |
| ] |
|
|
| [project.urls] |
| Homepage = "https://huggingface.co/raazkumar/dflash-mlx-universal" |
| Repository = "https://huggingface.co/raazkumar/dflash-mlx-universal" |
| Documentation = "https://huggingface.co/raazkumar/dflash-mlx-universal/blob/main/M2_PRO_MAX_GUIDE.md" |
| Issues = "https://huggingface.co/raazkumar/dflash-mlx-universal/discussions" |
|
|
| [tool.setuptools.packages.find] |
| where = ["."] |
| include = ["dflash_mlx*"] |
|
|
| [tool.black] |
| line-length = 100 |
| target-version = ['py311'] |
|
|
| [tool.ruff] |
| line-length = 100 |
| select = ["E", "F", "W", "I"] |
| ignore = ["E501"] |
|
|