forked from VirtualPatientEngine/AIAgents4Pharma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.81 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiagents4pharma"
description = "AI Agents for drug discovery, drug development, and other pharmaceutical R&D"
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",
"coverage==7.6.4",
"einops==0.8.0",
"gdown==5.2.0",
"huggingface_hub==0.26.5",
"hydra-core==1.3.2",
"joblib==1.4.2",
"langchain==0.3.7",
"langchain-community==0.3.5",
"langchain-core==0.3.31",
"langchain-experimental==0.3.3",
"langchain-openai==0.2.5",
"langchain_ollama==0.2.2",
"langgraph==0.2.66",
"matplotlib==3.9.2",
"openai==1.59.4",
"ollama==0.4.6",
"pandas==2.2.3",
"plotly==5.24.1",
"pydantic==2.9.2",
"pylint==3.3.1",
"pytest==8.3.3",
"pytest-asyncio==0.25.2",
"streamlit==1.39.0",
"sentence_transformers==3.3.1",
"tabulate==0.9.0",
"torch==2.2.2",
"torch_geometric==2.6.1",
"tqdm==4.66.6",
"transformers==4.48.0",
"mkdocs==1.6.1",
"mkdocs-jupyter==0.25.1",
"mkdocs-material==9.5.47",
"mkdocstrings-python==1.12.2",
"mkdocs-include-markdown-plugin==7.1.2",
"mkdocstrings==0.27.0",
"streamlit-feedback"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {file = "release_version.txt"}
# find packages
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["aiagents4pharma*"]
[tool.setuptools.package-data]
aiagents4pharma = [
"configs/*",
"configs/talk2biomodels/agents/t2b_agent/*"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"