-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
44 lines (33 loc) · 917 Bytes
/
requirements-dev.txt
File metadata and controls
44 lines (33 loc) · 917 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
40
41
42
43
44
# WhatsApp API Python Wrapper - Development Dependencies
# =======================================================
#
# This file contains all development and testing dependencies.
# Install with: pip install -r requirements-dev.txt
#
# This includes the core requirements plus development tools.
# Include core requirements
-r requirements.txt
# Testing Framework
# -----------------
# Core testing framework
pytest>=7.0.0,<9.0.0
# Mock objects for testing
pytest-mock>=3.0.0,<4.0.0
# Async testing support
pytest-asyncio>=0.21.0,<1.0.0
# Test coverage reporting
pytest-cov>=4.0.0,<6.0.0
# HTTP response mocking for tests
responses>=0.23.0,<1.0.0
# Code Quality Tools
# ------------------
# Code formatting
black>=23.0.0,<25.0.0
# Import sorting
isort>=5.0.0,<6.0.0
# Linting and style checking
flake8>=6.0.0,<8.0.0
# Type checking
mypy>=1.0.0,<2.0.0
# Git hooks for code quality
pre-commit>=3.0.0,<4.0.0