forked from VirtualPatientEngine/AIAgents4Pharma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 950 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "talk2biomodels"
description = "A submodule of AIAgents4Pharma for interacting with systems biology models "
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"copasi_basico==0.78",
"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-openai==0.2.5",
"matplotlib==3.9.2",
"plotly==5.24.1",
"pydantic==2.9.2",
"pytest==8.3.3",
"streamlit==1.39.0"
]
dynamic = ["version"]
# Package discovery for the submodule
[tool.setuptools]
packages = [
"talk2biomodels",
"talk2biomodels.models",
"talk2biomodels.tools"
]