File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- numpy ;
2- scipy ;
3- scikit-learn ;
4- scikit-image ;
5- pandas ;
6- nibabel ;
7- pillow ;
1+ numpy >= 1.24 , < 3.0
2+ scipy
3+ scikit-learn
4+ scikit-image
5+ pandas
6+ nibabel
7+ pillow
Original file line number Diff line number Diff line change 1818
1919# read install requirements from requirements.txt
2020with open (os .path .join (source_dir , "requirements.txt" )) as o :
21- requirements = [str (r ) for r in Requirement (o .read ())]
21+ #requirements = {str(r).rstrip() for r in o}
22+ requirements = o .read ().splitlines ()
23+
24+ print (requirements )
2225
2326setup (
2427 name = "MetricsReloaded" ,
5053 "Programming Language :: Python :: 3.11" ,
5154 "Programming Language :: Python :: 3.12" ,
5255 "Programming Language :: Python :: 3.13" ,
53- "Programming Language :: Python :: 3.14" ,
5456 "Topic :: Scientific/Engineering" ,
5557 ],
5658 project_urls = {
You can’t perform that action at this time.
0 commit comments