forked from sysbio-curie/scycle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (27 loc) · 784 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (27 loc) · 784 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
from setuptools import setup, find_packages
setup(name='scycle',
version= '0.1.17',
description='Cell cycle pseudotime in single-cell RNA-seq',
url='http://github.com/csgroen/scycle',
author=['Clarice Groeneveld', 'Andrei Zinovyev', 'Aziz Fouche'],
author_email='clarice.groeneveld@curie.fr',
license='MIT',
packages=find_packages(),
install_requires =[
'scanpy',
'elpigraph-python',
'anndata',
'pandas',
'numpy',
'matplotlib',
'plotnine',
'plotly',
'typing',
'scrublet',
'requests',
'stabilized-ica',
'transmorph==0.1.0',
'scikit-misc'
],
dependency_links=[],
zip_safe=False)