* add 12.8.1 cuda to the base matrix * use nightly * bump deepspeed and set no binary * deepspeed binary fixes hopefully * install deepspeed by itself * multiline fix * make sure ninja is installed * try with reversion of packaging/setuptools/wheel install * use license instead of license-file * try rolling back packaging and setuptools versions * comment out license for validation for now * make sure packaging version is consistent * more parity across tests and docker images for packaging/setuptools
28 lines
738 B
TOML
28 lines
738 B
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8", "packaging==23.2"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "axolotl"
|
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
description = "LLM Trainer"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
# license = "Apache-2.0"
|
|
|
|
[project.scripts]
|
|
axolotl = "axolotl.cli.main:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://axolotl-ai-cloud.github.io/axolotl/"
|
|
Repository = "https://github.com/axolotl-ai-cloud/axolotl.git"
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["setuptools_axolotl_dynamic_dependencies"]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.cmdclass]
|
|
build_py = "setuptools_axolotl_dynamic_dependencies.BuildPyCommand"
|