-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.1 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.1 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
from setuptools import setup, find_packages
with open('README.md','r') as f:
description = f.read()
setup(
name='fusemap',
version='0.0.2',
packages=find_packages(),
install_requires=[
'scanpy==1.9.3',
'torch==2.0.1',
'dgl==1.1.1',
'sparse==0.14.0',
'leidenalg==0.10.1',
'dglgo==0.0.2',
"streamlit==1.45.1",
"openai==1.82.1",
"langchain_anthropic==0.3.14",
"langchain==0.3.25",
"langchain-community==0.3.24",
"langchain-openai==0.3.18",
"audio-recorder-streamlit==0.0.10",
"plotly==6.1.2",
"harmonypy==0.0.10",
"langgraph==0.4.7",
# "langgraph-checkpoints==2.0.26",
"langgraph-prebuilt==0.2.2",
"langgraph-sdk==0.1.70",
"langsmith==0.3.43",
"easydict==1.13",
"numpy==1.26.2"
],
entry_points={
"console_scripts":[
"fusemap = fusemap:spatial_integrate"
]
},
long_description=description,
long_description_content_type='text/markdown',
)