-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 839 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 839 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
29
30
31
32
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
d = {}
with open("SPACEL/_version.py") as f:
exec(f.read(), d)
setup(
name="SPACEL",
version=d["__version__"],
author="Hao Xu",
author_email="xuhaoustc@mail.ustc.edu.cn",
description="SPACEL: characterizing spatial transcriptome architectures by deep-learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/QuKunLab/SPACEL",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"pip",
"squidpy<1.3",
"scvi-tools<=0.20.3",
"scikit-learn",
"scanpy",
"numba",
"torch<=1.13",
"gpytorch",
"optax<=0.1.7",
],
)