-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.22 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.22 KB
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
from setuptools import setup, find_packages
import os
setup(
name="SpaceTravLR",
version="0.1.16",
description="Spatially perturbing Transcription factors, Ligands & Receptors",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=[
"setuptools<81",
"networkx",
"pysal>=24.01",
"scanpy>=1.10.2",
"torchvision",
"pyarrow",
"enlighten",
"pyro-ppl",
"group-lasso",
"pqdm",
"magic-impute",
"wordcloud",
"easydict",
"torch",
"ipykernel",
"simple-slurm",
"igraph",
"genomepy",
"pybedtools",
"ipywidgets",
"commot",
"numpy==1.26"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="spatial transcriptomics, microniche identification, cell-cell communication",
)