* fix build w pyproject to respect insalled torch version * include in manifest * disable duplicate code check for now * move parser so it can be found * add checks for correct pytorch version so this doesn't slip by again
27 lines
694 B
TOML
27 lines
694 B
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "axolotl"
|
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
description = "LLM Trainer"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
[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"
|