forked from atarashansky/SAMap
-
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) · 864 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (27 loc) · 864 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="samap",
version="1.0.2",
description="The SAMap algorithm",
long_description="The Self-Assembling Manifold Mapping algorithm for mapping single-cell datasets across species.",
long_description_content_type="text/markdown",
author="Alexander J. Tarashansky",
url="https://github.com/atarashansky/SAMap",
author_email="tarashan@stanford.edu",
keywords="scrnaseq analysis manifold reconstruction cross-species mapping",
python_requires=">=3.7",
install_requires=[
"sam-algorithm>=0.8.1",
"scanpy>1.7.0",
"hnswlib",
"dill",
"numba==0.52.0",
"h5py<=2.10",
"leidenalg",
"fast-histogram",
"holoviews-samap"
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)