Using license classifiers and a text based license was deprecated at some point and now gives a warning saying it is unsupported. The text that we had was just the SPDX expression, although misplaced apparently. Use the SPDX expression properly.
20 lines
552 B
TOML
20 lines
552 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mlgo-utils"
|
|
description = "Tooling for ML in LLVM"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dynamic = ["version"]
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "mlgo.__version__"}
|
|
|
|
[project.scripts]
|
|
combine_training_corpus = "mlgo.corpus.combine_training_corpus:parse_args_and_run"
|
|
extract_ir = "mlgo.corpus.extract_ir:parse_args_and_run"
|
|
make_corpus = "mlgo.corpus.make_corpus:parse_args_and_run"
|