forked from brianhie/scanorama
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 679 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='scanorama',
version='1.4',
description='Panoramic stitching of heterogeneous single cell transcriptomic data',
url='https://github.com/brianhie/scanorama',
download_url='https://github.com/brianhie/scanorama/archive/v1.4.tar.gz',
packages=find_packages(exclude=['bin', 'conf', 'data', 'target']),
install_requires=[
'annoy>=1.11.5',
'fbpca>=1.0',
'intervaltree==2.1.0',
'matplotlib>=2.0.2',
'numpy>=1.12.0',
'scipy>=1.0.0',
'scikit-learn>=0.20rc1',
],
author='Brian Hie',
author_email='brianhie@mit.edu',
license='MIT'
)