-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (74 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
82 lines (74 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "agentic-ai-engineering-course"
version = "0.4.7"
description = "Python modules for the Agentic AI Engineering course by Towards AI and Paul Iusztin."
readme = "README_PACKAGE.md"
requires-python = ">=3.12.11"
authors = [
{name = "Paul Iusztin", email = "p.b.iusztin@gmail.com"},
{name = "Fabio chiusano", email = "chiusanofabio94@gmail.com"},
{name = "Omar solano", email = "omarsolano27@gmail.com"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
keywords = ["ai", "agents", "workflows", "llms"]
dependencies = [
"click>=8.1.8",
"loguru>=0.7.3",
"pydantic>=2.11.7",
"pydantic-settings>=2.9.1",
"pyyaml>=6.0.1",
"chromadb>=1.0.20",
"google-genai>=1.24.0",
"langchain>=1.0.3",
"langchain-community>=0.4.1",
"langchain-google-genai>=3.0.0",
"langgraph>=1.0.3",
"matplotlib>=3.10.3",
"mem0ai>=0.1.116",
"pillow>=11.3.0",
"python-dotenv>=1.1.0",
"scikit-learn>=1.7.0",
"requests>=2.32.4",
"fastmcp==2.12.0",
"opik>=1.7.42",
"gitingest>=0.1.5",
"firecrawl-py>=2.7.1",
"langchain-perplexity>=0.1.2",
"langgraph-checkpoint-sqlite>=3.0.0",
"aiosqlite>=0.21.0",
"ipywidgets>=8.1.8",
]
[project.urls]
Homepage = "https://github.com/towardsai/agentic-ai-engineering-course"
Repository = "https://github.com/towardsai/agentic-ai-engineering-course"
Issues = "https://github.com/towardsai/agentic-ai-engineering-course/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["lessons/utils", "lessons/research_agent_part_2", "lessons/agents_integration", "lessons/writing_workflow"]
force-include = { "lessons/writing_workflow/src/brown" = "brown" }
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle errors
"I", # isort
]
[tool.ruff.lint.isort]
known-first-party = ["lessons"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"notebook>=7.4.5",
"ruff>=0.14.6",
]