- YAML 규칙 파일 4개 신규 생성 (html_css, accessibility, seo, performance_security) W3C, WCAG 2.0/2.1/2.2, OWASP, Google Search Essentials 공식 표준 기반 - rules/__init__.py: YAML 로더 + 캐싱 + 리로드 모듈 - html_css.py: 30개 폐기 요소, 100+개 폐기 속성을 YAML에서 동적 로드 - accessibility.py: WCAG 버전 선택 지원 (wcag_version 파라미터) - seo.py: title/description 길이, OG 필수 태그 등 임계값 YAML 로드 - performance_security.py: COOP/COEP/CORP 검사 추가, 정보 노출 헤더 검사 추가, TTFB/페이지 크기 임계값 YAML 로드 - PyYAML 의존성 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
462 B
Plaintext
38 lines
462 B
Plaintext
# Core
|
|
fastapi>=0.115.0
|
|
uvicorn[standard]>=0.32.0
|
|
pydantic>=2.10.0
|
|
pydantic-settings>=2.6.0
|
|
python-dotenv>=1.0.0
|
|
|
|
# Database
|
|
motor>=3.6.0
|
|
pymongo>=4.9.0,<4.10
|
|
|
|
# Redis
|
|
redis>=5.2.0
|
|
|
|
# SSE
|
|
sse-starlette>=2.1.0
|
|
|
|
# HTTP Client
|
|
httpx>=0.27.0
|
|
|
|
# HTML Parsing
|
|
beautifulsoup4>=4.12.0
|
|
html5lib>=1.1
|
|
lxml>=5.3.0
|
|
|
|
# Accessibility (Playwright)
|
|
playwright>=1.49.0
|
|
|
|
# PDF Report
|
|
weasyprint>=62.0
|
|
Jinja2>=3.1.0
|
|
|
|
# Rules (YAML)
|
|
PyYAML>=6.0.0
|
|
|
|
# Utilities
|
|
python-slugify>=8.0.0
|