Switch to unified view

a b/aiagents4pharma/talk2aiagents4pharma/pyproject.toml
1
[build-system]
2
requires = ["setuptools", "wheel"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "AIAgents4Pharma"
7
8
description = "The main agent to interact with the other agents of AIAgents4Pharma"
9
10
readme = "README.md"
11
requires-python = ">=3.12"
12
classifiers = [
13
  "Programming Language :: Python :: 3",
14
  "License :: OSI Approved :: MIT License",
15
  "Operating System :: OS Independent",
16
]
17
18
dependencies = [
19
  "copasi_basico==0.78",
20
  "coverage==7.6.4",
21
  "einops==0.8.0",
22
  "gdown==5.2.0",
23
  "gravis==0.1.0",
24
  "huggingface_hub==0.26.5",
25
  "hydra-core==1.3.2",
26
  "joblib==1.4.2",
27
  "langchain==0.3.7",
28
  "langchain-community==0.3.5",
29
  "langchain-core==0.3.40",
30
  "langchain-experimental==0.3.3",
31
  "langchain-nvidia-ai-endpoints==0.3.9",
32
  "langchain-openai==0.2.5",
33
  "langchain_ollama==0.2.3",
34
  "langgraph_supervisor==0.0.4",
35
  "matplotlib==3.9.2",
36
  "openai==1.59.4",
37
  "ollama==0.4.7",
38
  "pandas==2.2.3",
39
  "pcst_fast==1.0.10",
40
  "plotly==5.24.1",
41
  "pubchempy==1.0.4",
42
  "pydantic==2.9.2",
43
  "pylint==3.3.1",
44
  "pypdf==5.2.0",
45
  "pytest==8.3.3",
46
  "pytest-asyncio==0.25.2",
47
  "pyzotero==1.6.9",
48
  "streamlit==1.39.0",
49
  "sentence_transformers==3.3.1",
50
  "tabulate==0.9.0",
51
  "torch==2.2.2",
52
  "torch_geometric==2.6.1",
53
  "tqdm==4.66.6",
54
  "transformers==4.48.0",
55
  "mkdocs==1.6.1",
56
  "mkdocs-jupyter==0.25.1",
57
  "mkdocs-material==9.5.47",
58
  "mkdocstrings-python==1.12.2",
59
  "mkdocs-include-markdown-plugin==7.1.2",
60
  "mkdocstrings==0.27.0",
61
  "streamlit-feedback",
62
  "anndata==0.11.3",
63
  "h5py==3.13.0",
64
  "igraph==0.11.8",
65
  "ipykernel==6.29.5",
66
  "ipython==8.32.0",
67
  "numpy==2.1.3",
68
  "nbformat==5.10.4",
69
  "scipy==1.15.2",
70
  "tqdm==4.67.1",
71
  "umap-learn==0.5.7",
72
  "plotly-express==0.4.1",
73
  "seaborn==0.13.2",
74
  "scanpy==1.11.0",
75
]
76
dynamic = ["version"]
77
78
# Package discovery for the submodule
79
[tool.setuptools]
80
packages = [
81
  "talk2aiagents4pharma",
82
  "talk2aiagents4pharma.configs",
83
  "talk2aiagents4pharma.agents",
84
  "talk2aiagents4pharma.states",
85
]
86