Skip to content
Snippets Groups Projects
Commit c46d223b authored by Yifan Zhao's avatar Yifan Zhao
Browse files

Moved model_zoo and added install script

parent 090ec19c
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,11 @@ dmypy.json ...@@ -15,6 +15,11 @@ dmypy.json
opentuner.db/ opentuner.db/
opentuner.log opentuner.log
# setuptool output
build/
dist/
*.egg-info/
# Sphinx # Sphinx
doc/build doc/build
......
File moved
File moved
File moved
File moved
File moved
File moved
setup.py 0 → 100644
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="predtuner",
version="0.1",
author="Yifan Zhao",
author_email="yifanz16@illinois.edu",
description="A package for predictive and empirical approximation autotuning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Evan-Zhao/predictive-tuner",
packages=["predtuner"],
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment