-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements_Dev.txt
More file actions
45 lines (34 loc) · 1.14 KB
/
requirements_Dev.txt
File metadata and controls
45 lines (34 loc) · 1.14 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
# SAP² - Development Dependencies
# Install with: pip install -r requirements-dev.txt
# Include production dependencies
-r requirements.txt
# ============================================================================
# CODE QUALITY
# ============================================================================
# Code formatting
black>=23.0.0
isort>=5.12.0
# Linting
flake8>=6.0.0
flake8-docstrings>=1.7.0
pylint>=2.17.0
# Type checking
mypy>=1.0.0
types-PyYAML>=6.0.0
# ============================================================================
# TESTING
# ============================================================================
pytest>=7.0.0
pytest-cov>=4.0.0
pytest-mock>=3.10.0
# ============================================================================
# DOCUMENTATION
# ============================================================================
sphinx>=6.0.0
sphinx-rtd-theme>=1.2.0
myst-parser>=1.0.0 # For Markdown support in Sphinx
# ============================================================================
# BUILD & PACKAGING
# ============================================================================
build>=0.10.0
twine>=4.0.0