-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
45 lines (36 loc) · 1.15 KB
/
requirements-dev.txt
File metadata and controls
45 lines (36 loc) · 1.15 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
# ==============================================================================
# E-commerce CMS - Development Requirements
# Extended requirements for development, testing, and debugging
# ==============================================================================
# Include base requirements
-r requirements-minimal.txt
# Development and Debugging
ipython==9.5.0
django-debug-toolbar==4.4.6
django-extensions==3.2.3
# Testing Framework
pytest==8.3.4
pytest-django==4.9.0
pytest-cov==6.0.0
factory-boy==3.3.1
# Code Quality and Formatting
black==24.10.0
flake8==7.1.1
isort==5.13.2
mypy==1.13.0
# Documentation
Sphinx==8.1.3
sphinx-rtd-theme==3.0.2
# Performance Profiling
django-silk==5.3.0
memory-profiler==0.61.0
# API Documentation
drf-spectacular==0.28.0
# Additional Development Tools
django-seed==0.3.1 # Database seeding
django-model-utils==5.1.0 # Model utilities
django-crispy-forms==2.3 # Form rendering
# ==============================================================================
# Installation for Development:
# pip install -r requirements-dev.txt
# ==============================================================================