| [project] | |
| name = "flame" | |
| dynamic = ["version"] | |
| description = "A minimal training framework for scaling FLA models" | |
| readme = "README.md" | |
| authors = [ | |
| { name = "Songlin Yang", email = "yangsl66@mit.edu" }, | |
| { name = "Yu Zhang", email = "yzhang.cs@outlook.com" }, | |
| ] | |
| license = { file = "LICENSE" } | |
| classifiers = [ | |
| "Programming Language :: Python :: 3", | |
| "License :: OSI Approved :: MIT License", | |
| "Operating System :: OS Independent", | |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | |
| ] | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| 'flash-linear-attention', | |
| 'torch>=2.5', | |
| 'torchdata', | |
| 'transformers>=4.45.0', | |
| 'triton>=3.0', | |
| 'datasets>=3.3.0', | |
| 'einops', | |
| 'ninja', | |
| 'wandb', | |
| 'tiktoken', | |
| 'tensorboard', | |
| "tyro>=1.0.3", | |
| "torchtitan", | |
| "psutil>=7.2.1", | |
| "cmake>=4.2.1", | |
| "packaging>=25.0", | |
| "setuptools>=80.9.0", | |
| "wheel>=0.45.1", | |
| "flash-attn>=2.8.3", | |
| "ipython>=8.37.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = ["pytest"] | |
| [project.urls] | |
| Homepage = "https://github.com/fla-org/flame" | |
| [build-system] | |
| requires = ["setuptools>=45", "wheel", "ninja", "torch"] | |
| [tool.isort] | |
| line_length = 127 | |
| multi_line_output = 3 | |
| [tool.uv.sources] | |
| torchtitan = { git = "https://github.com/pytorch/torchtitan.git", rev = "0b44d4c" } | |