[3af7d7]: / aiagents4pharma / talk2biomodels / pyproject.toml

Download this file

52 lines (45 with data), 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
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "talk2biomodels"
description = "An agent to interact with systems biology models "
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"copasi_basico==0.78",
"hydra-core==1.3.2",
"openai==1.59.4",
"pandas==2.2.3",
"langchain==0.3.7",
"langchain-community==0.3.5",
"langchain-core==0.3.15",
"langchain-experimental==0.3.3",
"langchain-nvidia-ai-endpoints==0.3.9",
"langchain-openai==0.2.5",
"langgraph==0.2.62",
"matplotlib==3.9.2",
"plotly==5.24.1",
"pydantic==2.9.2",
"pylint==3.3.1",
"pypdf==5.2.0",
"pytest==8.3.3",
"streamlit==1.39.0",
]
dynamic = ["version"]
# Package discovery for the submodule
[tool.setuptools]
packages = [
"talk2biomodels",
"talk2biomodels.configs",
"talk2biomodels.models",
"talk2biomodels.api",
"talk2biomodels.tools",
"talk2biomodels.agents",
"talk2biomodels.states",
]