-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.5 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
[tool.poetry]
name = "just-agents"
version = "0.0.0"
description = "Just Agents"
authors = [
"Alex Karmazin <karmazinalex@gmail.com>",
"Newton Winter <isoutthere@gmail.com>",
"Anton Kulaga <antonkulaga@gmail.com>",
"Livia Zaharia <liviazaharia2020@gmail.com>"
]
maintainers = [
"Anton Kulaga <antonkulaga@gmail.com>",
"Newton Winter <isoutthere@gmail.com>"
]
readme = "README.md"
license = "Apache 2.0"
keywords = ["python", "llm", "agents", "AI", "machine-learning"]
packages = [{include = "just_agents"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.15"
just-agents-core = "*"
just-agents-tools = "*"
just-agents-coding = "*"
just-agents-web = "*"
just-agents-router = "*"
just-agents-examples = "*"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.5"
langfuse = "<3.0.0"
python-dotenv = "*"
ipykernel = "^6.29.5"
numpydoc = "^1.9.0"
just-agents-core = {path = "core", develop = true}
just-agents-tools = {path = "tools", develop = true}
just-agents-coding = {path = "coding", develop = true}
just-agents-web = {path = "web", develop = true}
just-agents-router = {path = "router", develop = true}
just-agents-examples = {path = "examples", develop = true}
[tool.poetry.scripts]
run-agent = "just_agents.web.run_agent:app"
deploy-agent = "just_agents.web.deploy_agent:app"
[build-system]
requires = ["poetry-core>=2.0.0", "poetry-dynamic-versioning>=1.4.1"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
strict = true