-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.43 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
51
52
53
54
55
56
57
58
[project]
name = "denario"
version = "1.0.1"
description = "Modular Multi-Agent System for Scientific Research Assistance"
authors = [
{ name = "Pablo Villanueva-Domingo" },
{ name = "Francisco Villaescusa-Navarro"},
{ name = "Boris Bolliet"},
]
maintainers = [
{ name = "Denario", email = "denario.astropilot.ai@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.12,<3.14"
license = { text = "GPLv3" }
keywords = ["machine learning","agent","biology","chemistry","cosmology","material sciences","llm"]
dependencies = [
"langchain-google-genai",
"langchain-anthropic>=0.3.10",
"langchain-openai>=0.3.12",
"langgraph>=0.3.25",
"google-cloud-aiplatform",
"google-ai-generativelanguage>=0.6.17",
"flatbuffers>=24.12.23",
"filelock>=3.17.0",
"cmbagent>=0.0.1post63",
"pymupdf",
"pillow",
"jsonschema",
"futurehouse-client",
"json5",
"pip",
]
[project.urls]
Homepage = "https://astropilot-ai.github.io/DenarioPaperPage/"
Documentation = "https://denario.readthedocs.io/en/latest/"
Repository = "https://github.com/AstroPilot-AI/Denario"
[project.scripts]
denario = "denario.cli:main"
[project.optional-dependencies]
app = ["denario_app>=1.0.0"]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material>=9.6.12",
"mkdocs-jupyter>=0.25.1",
"mkdocs-git-committers-plugin-2>=2.5.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.packages.find]
where = ["."]