Switch to unified view

a b/aiagents4pharma/talk2biomodels/pyproject.toml
1
[build-system]
2
requires = ["setuptools", "wheel"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "talk2biomodels"
7
8
description = "An agent to interact with systems biology models "
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
  "hydra-core==1.3.2",
21
  "openai==1.59.4",
22
  "pandas==2.2.3",
23
  "langchain==0.3.7",
24
  "langchain-community==0.3.5",
25
  "langchain-core==0.3.15",
26
  "langchain-experimental==0.3.3",
27
  "langchain-nvidia-ai-endpoints==0.3.9",
28
  "langchain-openai==0.2.5",
29
  "langgraph==0.2.62",
30
  "matplotlib==3.9.2",
31
  "plotly==5.24.1",
32
  "pydantic==2.9.2",
33
  "pylint==3.3.1",
34
  "pypdf==5.2.0",
35
  "pytest==8.3.3",
36
  "streamlit==1.39.0",
37
]
38
dynamic = ["version"]
39
40
# Package discovery for the submodule
41
[tool.setuptools]
42
packages = [
43
  "talk2biomodels",
44
  "talk2biomodels.configs",
45
  "talk2biomodels.models",
46
  "talk2biomodels.api",
47
  "talk2biomodels.tools",
48
  "talk2biomodels.agents",
49
  "talk2biomodels.states",
50
]
51