-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
41 lines (33 loc) · 1.59 KB
/
requirements.txt
File metadata and controls
41 lines (33 loc) · 1.59 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
# LeetCode Practice Framework - Dependencies
#
# Install with: pip install -r requirements.txt
#
# Required packages:
debugpy>=1.8.0 # Debug support for VS Code
# Testing packages:
pytest>=7.4.0 # Unit testing framework
pytest-cov>=4.1.0 # Coverage reporting
# Optional packages (for complexity estimation):
big-O>=0.10.0 # Time complexity estimation
# numpy # Required by big-O (installed automatically)
# Optional packages (for memory profiling):
psutil>=5.9.0 # Cross-platform process/system utilities (RSS measurement)
sparklines>=0.4.0 # Unicode sparkline generation for memory traces
tabulate>=0.9.0 # Pretty-print tabular data in CLI
# Documentation generation (MkDocs):
mkdocs>=1.6.0 # MkDocs static site generator
mkdocs-material>=9.5.0 # Material theme for MkDocs
mkdocs-minify-plugin>=0.7.0 # Minify HTML output
mkdocs-include-markdown-plugin>=7.0.0 # Include markdown files
mkdocs-git-revision-date-localized-plugin>=1.2.0 # Git revision date plugin
mkdocs-document-dates>=3.5.0 # Document dates plugin
# Optional LLM packages (for tools/text_to_mindmap.py):
# openai>=2.11.0 # OpenAI API client (for GPT models)
# anthropic>=0.18.0 # Anthropic API client (for Claude models)
# requests>=2.31.0 # HTTP library (for Ollama local LLM)
numpy>=2.4,<3
pandas>=2.3,<3
# Pre-commit hooks framework (for local CI/CD automation):
pre-commit>=3.5.0 # Git hooks framework for pre-commit checks
# Optional packages (for tools/review-code):
leetscrape @ git+https://github.com/lufftw/LeetScrape.git@v1.0.2-compat.0