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", )