-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (23 loc) · 831 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='SPACe',
version='10.0.0',
python_requires='<11',
description='Implementation of SPACe',
author='Kazem Safari, Michela Marini',
author_email='[email protected]',
url='https://github.com/dlabate/SPACe',
packages=find_packages(exclude=[]),
install_requires=[
'cellpose==2.2',
'torch>=1.6', 'torchvision', 'pyclesperanto-prototype', 'sympy',
'tifffile',
'numpy>=1.20.0', 'scipy', 'scikit-image>=0.20.0', 'scikit-learn',
'SimpleITK',
'pandas>=2.0.0', 'xlsxwriter', 'openpyxl', 'xlrd', 'jupyter',
'matplotlib', 'seaborn', 'plotly',
'pathlib', 'tqdm', 'typing', 'cmcrameri', 'pyefd',]
)