forked from CahanLab/PySingleCellNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 689 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 689 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
from setuptools import setup
setup(name='pySingleCellNet',
version='0.1.1',
description='Determine cell identity from single cell RNA-Seq data',
url='http://github.com/pcahan1/PySingleCellNet/',
author='Patrick Cahan',
author_email='patrick.cahan@gmail.com',
license='MIT',
packages=['pySingleCellNet'],
install_requires=[
'pandas',
'numpy',
'scikit-learn',
'scanpy',
'statsmodels',
'scipy',
'matplotlib',
'seaborn',
'umap-learn',
'mygene',
'palettable',
'gseapy'
],
zip_safe=False)