-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
39 lines (38 loc) · 1.26 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
from setuptools import setup, find_packages
setup(
name="sam-algorithm",
version="1.0.2",
description="The Self-Assembling-Manifold algorithm",
long_description="The Self-Assembling-Manifold algorithm for analyzing single-cell RNA sequencing data.",
long_description_content_type="text/markdown",
url="https://github.com/atarashansky/self-assembling-manifold",
author="Alexander J. Tarashansky",
author_email="[email protected]",
keywords="scrnaseq analysis manifold reconstruction",
python_requires=">=3.6",
# py_modules=["SAM", "utilities", "SAMGUI"],
install_requires=[
"numpy>=1.19.0",
"scipy>=1.3.1",
"pandas>1.0.0",
"scikit-learn>=0.23.1",
"packaging>=0.20.0",
"numba>=0.50.1",
"umap-learn>=0.4.6",
"dill",
"anndata>=0.7.4",
"h5py",
"harmonypy",
"hnswlib"
],
extras_require={
"louvain": ["louvain", "cython", "python-igraph"],
"leiden": ["leidenalg", "cython", "python-igraph"],
"hdbscan": ["hdbscan"],
"plot": ["ipythonwidgets", "jupyter", "plotly==4.0.0", "matplotlib"],
"scanpy": ["scanpy"],
},
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)