21 lines
444 B
Plaintext
21 lines
444 B
Plaintext
|
|
# Nexus — Development & Gate Check Dependencies
|
||
|
|
# These are NOT needed for production runtime
|
||
|
|
# Install: pip install -r requirements-dev.txt
|
||
|
|
|
||
|
|
# Gate 4: Lint
|
||
|
|
ruff>=0.11.0
|
||
|
|
|
||
|
|
# Gate 6: Security Scan
|
||
|
|
bandit>=1.9.0
|
||
|
|
|
||
|
|
# Unit Testing
|
||
|
|
pytest>=8.0
|
||
|
|
pytest-asyncio>=0.24
|
||
|
|
httpx>=0.28
|
||
|
|
aiosqlite>=0.20
|
||
|
|
# Needed on Windows Python builds for zoneinfo.ZoneInfo("Asia/Shanghai") in tests.
|
||
|
|
tzdata>=2025.2
|
||
|
|
|
||
|
|
# Type Checking (optional, not yet in gate)
|
||
|
|
# mypy>=1.14
|