Files
AMD-SHARK-Studio/setup.py
Prashant Kumar 59485f571e Update readme.md of shark_runner
Updated the readme.md of shark_runner and added setup.py for pip
installation.
2022-04-01 01:00:32 +05:30

14 lines
396 B
Python

from setuptools import find_packages
from setuptools import setup
setup(
name="shark",
version="0.0.1",
description="The Shark Runner provides inference and training APIs to run deep learning models on Shark Runtime.",
author="Nod Labs",
author_email="stdin@nod.com",
url="https://github.com/NodLabs/dSHARK",
packages=find_packages(exclude=('dSHARK','examples')),
)