-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirements.txt
More file actions
39 lines (29 loc) · 818 Bytes
/
requirements.txt
File metadata and controls
39 lines (29 loc) · 818 Bytes
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
# CodeReview-AI-Agent Dependencies
# Kaggle Agents Intensive Capstone Project 2025
# Core ADK and Google AI
google-genai>=0.2.0
# Utility libraries
python-dotenv>=1.0.0
# Rich terminal output (new)
rich>=13.0.0
# Async/parallel execution (new)
aiohttp>=3.9.0
# GitHub integration (new)
PyGithub>=2.1.0
# Static analysis tools (new)
pylint>=3.0.0
flake8>=7.0.0
mypy>=1.8.0
safety>=3.0.0
# Report generation (new)
jinja2>=3.1.0
# Code analysis tools
# Note: ast is part of Python standard library
# radon is optional for advanced complexity metrics
# For observability and logging (all part of standard library)
# - logging (standard library)
# - json (standard library)
# - time (standard library)
# For evaluation framework (standard library)
# - dataclasses (standard library)
# - typing (standard library)