Saurabh Jha fa90c9d5e7 [mlir] Set up boilerplate build for MLIR benchmarks
This is is the start of the MLIR benchmarks. It sets up a command
line tool along with conventions to define and run benchmarks
using mlir's python bindings.

Reviewed By: aartbik

Differential Revision: https://reviews.llvm.org/D115174
2022-01-27 21:38:15 +00:00

15 lines
245 B
Python

from setuptools import setup
from setuptools import find_packages
setup(
name="mbr",
version="1.0.0",
packages=find_packages(),
entry_points={
"console_scripts": [
"mbr = mbr.main:main",
],
},
)