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
23 lines (22 loc) · 639 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='pySingleCellNet',
version='0.1',
description='Determining 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',
'sklearn',
'scanpy',
'sklearn',
'statsmodels',
'scipy',
'matplotlib',
'seaborn',
'umap-learn'
],
zip_safe=False)