-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 819 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
from os import path
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='localmd',
description="Method for compressing neuroimaging data using spatially localized low-rank matrix decompositions",
author='Amol Pasarkar',
version="0.0.4",
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"tifffile",
"torch",
"scipy",
"tqdm",
"jax",
"jaxlib",
"plotly"
],
extras_require={
'vis': [
'jupyterlab', # Install JupyterLab when 'notebooks' is specified
'plotly' # Plotly is already in the main install_requires, but we can keep it here too
],
},
python_requires='>=3.8',
)