-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (43 loc) · 1.08 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
__version__ = "0.0.1"
exec(open('chromograph/_version.py').read())
setup(
name="chromograph",
version=__version__,
packages=find_packages(),
install_requires=[
'loompy',
'numpy',
'scikit-learn',
'scipy',
'matplotlib',
'networkx',
'python-louvain', # is imported as "community"
'hdbscan',
'pyyaml',
'statsmodels', # for multiple testing
'numpy-groupies==0.9.6',
#'numba=0.51', ## Version is important, others throw errors (previous 0.49.1)
'tqdm',
'umap-learn==0.4.6', # imported as "umap"
'torch',
'harmony-pytorch',
'pynndescent==0.4.8',
'click',
'leidenalg',
'unidip',
'opentsne',
'pybedtools',
'macs2',
'pygenometracks',
'fisher',
'kneed'
## Install through bioconda ucsc-bedgraphtobigwig ucsc-genepredtobed ucsc-gtftogenepred ucsc-bigwigaverageoverbed
],
include_package_data=True,
author="Linnarsson Lab",
author_email="[email protected]",
description="Pipeline for single-cell ATAC-seq analysis",
license="MIT",
url="https://github.com/linnarsson-lab/chromograph",
)