Files
clang-p2996/llvm/utils/mlgo-utils/pyproject.toml
Aiden Grossman 0e986e395f [MLGO] Fix MLGO executable scripts
The MLGO executable scripts were previously set up incorrectly with the
entrypoints. This patch corrects the entrypoints so that the scripts
work as expected rather than throwing import errors in the wrapper.
2024-07-18 06:02:49 +00:00

23 lines
634 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 = {text = "Apache-2.0 WITH LLVM-exception"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
[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"