forked from intel/graph-compiler-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 860 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import runpy
from pathlib import Path
from setuptools import setup, find_packages, find_namespace_packages
root = Path(__file__).resolve().parent
with open(root / "README.md", encoding="utf-8") as f:
long_description = f.read()
with open(root / "requirements.txt", "r") as f:
reqs = f.readlines()
name = "dl_bench"
version = "v0.1"
setup(
name=name,
version=version,
description="Benchmarks for torch compilers.",
long_description=long_description,
packages=[
*find_packages(include=["dl_bench"]),
],
install_requires=reqs,
python_requires=">=3.9",
entry_points={
"console_scripts": [
# "report-xlsx = timedf.scripts.report_xlsx:main",
"benchmark-run = dl_bench.cli.launcher:main",
# "benchmark-load = timedf.scripts.benchmark_load:main",
]
},
)