bdck commited on
Commit
1733a4d
·
verified ·
1 Parent(s): 98b7635

Upload setup.py

Browse files
Files changed (1) hide show
  1. setup.py +18 -0
setup.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="lightweightmr",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "torch>=2.0",
9
+ "numpy>=1.24",
10
+ "scipy>=1.10",
11
+ ],
12
+ entry_points={
13
+ "console_scripts": [
14
+ "lightweightmr=lightweightmr.__main__:main",
15
+ ],
16
+ },
17
+ python_requires=">=3.9",
18
+ )