HSMR / setup.py
IsshikiHugh's picture
feat: CPU demo
5ac1897
raw
history blame contribute delete
370 Bytes
from setuptools import setup, find_packages
# import `__version__`
with open('lib/version.py') as f:
exec(f.read())
setup(
name = 'lib',
version = __version__, # type: ignore
author = 'Yan Xia',
author_email = '[email protected]',
description = 'Official implementation of HSMR.',
packages = find_packages(),
)