-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 960 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 960 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
33
34
from setuptools import setup, find_packages
__version__ = "0.0.1"
URL = None
install_requires = [
"prettytable",
"tensorboard",
"sklearn",
"tabulate",
"matplotlib",
"jupyter",
"jupyterlab",
"dill",
"scanpy",
]
setup(
name="celldecoder",
version=__version__,
url=URL,
python_requires=">=3.8",
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
)
# pip install torch==1.10
# pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric -f https://data.pyg.org/whl/torch-1.10.0+cu102.html
# pip install dgl-cu102 -f https://data.dgl.ai/wheels/repo.html
# pip install --upgrade "protobuf<=3.20.1"
# pip install torch==1.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
# pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric -f https://data.pyg.org/whl/torch-1.10.0+cu113.html