-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
executable file
·33 lines (30 loc) · 1.18 KB
/
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
26
27
28
29
30
31
32
#!/usr/bin/env python3
from setuptools import setup
import os
import sys
setup(name='stereoscope',
version='0.3.1',
description='Integration of ST and SC data',
author='Alma Andersson',
author_email='alma.andersson@scilifelab.se',
url='http://github.com/almaan/stereoscope',
download_url='https://github.com/almaan/stereoscope/archive/v_03.tar.gz',
license='MIT',
packages=['stsc'],
python_requires='>3.5.0',
install_requires=[
'torch>=1.1.0',
'numba==0.54.1',
'numpy==1.20.0',
'pandas>=0.25.0',
'matplotlib>=3.1.0',
'scikit-learn>=0.20.0',
'umap-learn>=0.4.1',
'anndata',
'scipy',
'Pillow',
],
entry_points={'console_scripts': ['stereoscope = stsc.__main__:main',
]
},
zip_safe=False)