-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 876 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 876 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
32
import sys
import shutil
from subprocess import call
from setuptools import setup
if sys.version_info.major != 3:
raise RuntimeError('SCTree test requires Python 3')
setup(name='SCTree',
description='SCTree test can statistical test the continuous tree sturecture for single-cell data',
author='Xiangqi Bai',
author_email='xqbai@amss.ac.cn',
package_dir={'': 'src'},
packages=['SCTree'],
install_requires=[
'numpy>=1.12.0',
'pandas>=0.19.2',
'scipy>=0.18.1',
'Cython',
'bhtsne',
'matplotlib>=2.0.0',
'seaborn>=0.7.1',
'sklearn',
'networkx>=1.11',
'fcsparser>=0.1.2',
'statsmodels>=0.8.0'],
)
# install wishbone
if shutil.which('pip3'):
call(['pip3', 'install', 'git+https://github.com/manusetty/wishbone.git'])