forked from lemony-ai/cascadeflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
123 lines (86 loc) · 3.1 KB
/
requirements-dev.txt
File metadata and controls
123 lines (86 loc) · 3.1 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# CascadeFlow Development Requirements
# Everything needed for development, testing, and contributing
# ============================================================================
# CORE DEPENDENCIES
# ============================================================================
-r requirements.txt
# ============================================================================
# PROVIDER SDKs (For Testing All Providers)
# ============================================================================
# API-based providers (require API keys)
openai>=1.0.0
anthropic>=0.8.0
groq>=0.4.0
huggingface-hub>=0.19.0
together>=0.2.0
# Local inference (optional - can also use HTTP)
vllm>=0.2.0
# Note: Ollama doesn't need a Python package - uses HTTP
# ============================================================================
# TESTING
# ============================================================================
pytest>=7.4.0
pytest-asyncio>=0.21.0
pytest-cov>=4.1.0
pytest-mock>=3.12.0
# Environment variable management for tests
python-dotenv>=1.0.0
# ============================================================================
# CODE QUALITY
# ============================================================================
# Formatting
black>=23.0.0
isort>=5.12.0
# Linting
ruff>=0.1.0
# Type checking
mypy>=1.5.0
# Pre-commit hooks
pre-commit>=3.5.0
# ============================================================================
# SECURITY SCANNING
# ============================================================================
# Python security linter
bandit>=1.7.0
# Check for known vulnerabilities in dependencies
safety>=2.3.0
# Audit Python packages for known vulnerabilities
pip-audit>=2.4.0
# ============================================================================
# DEVELOPMENT UTILITIES
# ============================================================================
# Rich terminal output (for development/debugging)
rich>=13.0.0
# Web framework for API examples
fastapi>=0.104.0
uvicorn>=0.24.0
# HTTP client (for health checks in examples)
httpx>=0.25.0
# Type stubs
types-requests>=2.31.0
# ============================================================================
# DOCUMENTATION (Optional)
# ============================================================================
# Uncomment if building docs:
# mkdocs>=1.5.0
# mkdocs-material>=9.4.0
# mkdocstrings[python]>=0.23.0
# ============================================================================
# SEMANTIC FEATURES (For ML-based functionality)
# ============================================================================
# Lightweight embedding model for semantic quality checks
# Note: This is optional but required for semantic quality tests
fastembed>=0.2.0
# ============================================================================
# INSTALLATION
# ============================================================================
# Install everything for development:
# pip install -r requirements-dev.txt
#
# Or install in editable mode:
# pip install -e ".[dev]"
#
# Run security checks:
# bandit -r cascadeflow/
# safety check
# pip-audit