-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
61 lines (55 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
55
56
57
58
59
60
61
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentlearn"
version = "0.5.0"
description = "A recursive learning framework that gives any AI agent a self-improvement loop with memory"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Aditya Dhookia", email = "adi1999@users.noreply.github.com" },
]
keywords = [
"ai",
"agents",
"learning",
"self-improvement",
"llm",
"knowledge",
"reinforcement",
"memory",
"evaluation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic>=2.0",
"openai>=1.0",
"anthropic>=0.30",
"numpy>=1.24",
"click>=8.0",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio", "ruff"]
[project.urls]
Homepage = "https://github.com/adi1999/agent-learn"
Repository = "https://github.com/adi1999/agent-learn"
Issues = "https://github.com/adi1999/agent-learn/issues"
[project.scripts]
agentlearn = "agentlearn.cli:cli"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]