File size: 381 Bytes
1733a4d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | from setuptools import setup, find_packages
setup(
name="lightweightmr",
version="0.1.0",
packages=find_packages(),
install_requires=[
"torch>=2.0",
"numpy>=1.24",
"scipy>=1.10",
],
entry_points={
"console_scripts": [
"lightweightmr=lightweightmr.__main__:main",
],
},
python_requires=">=3.9",
)
|