-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.07 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
46
47
from setuptools import setup, find_packages
__version__ = "0.0.0"
exec(open('cytograph/_version.py').read())
setup(
name="cytograph",
version=__version__,
packages=find_packages(),
install_requires=[
'loompy',
'numpy',
'scikit-learn',
'scipy',
'networkx',
'python-louvain', # is imported as "community"
'hdbscan',
'pyyaml',
'statsmodels', # for multiple testing
'numpy-groupies==0.9.6',
# 'python-igraph', # imported as "igraph"; a challenge to install so better do it manually
'tqdm',
'umap-learn', # imported as "umap"
'torch',
# 'torchvision',
'harmony-pytorch',
'pynndescent',
'click',
'leidenalg',
'unidip',
'opentsne'
],
include_package_data=True,
entry_points='''
[console_scripts]
cytograph=cytograph.pipeline.commands:cli
''',
# entry_points={
# "console_scripts": "cytograph=cytograph.pipeline.commands:cli"
# },
# metadata
author="Linnarsson Lab",
author_email="[email protected]",
description="Pipeline for single-cell RNA-seq analysis",
license="MIT",
url="https://github.com/linnarsson-lab/cytograph-dev",
)