Spaces:
Running
on
L4
Running
on
L4
File size: 370 Bytes
5ac1897 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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(),
) |