Skip to content
Snippets Groups Projects
setup.py 492 B
Newer Older
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"],