✨ 주요 개선사항: - PDF API 500 에러 수정 (한글 파일명 UTF-8 인코딩 처리) - PDF 뷰어 기능 완전 구현 (PDF.js 통합, 네비게이션, 확대/축소) - 서적별 문서 그룹화 UI 데본씽크 스타일로 개선 - PDF Manager 페이지 서적별 보기 기능 추가 - Alpine.js 로드 순서 최적화로 JavaScript 에러 해결 🎨 UI/UX 개선: - 확장/축소 가능한 아코디언 스타일 서적 목록 - 간결하고 직관적인 데본씽크 스타일 인터페이스 - PDF 상태 표시 (HTML 연결, 서적 분류) - 반응형 디자인 및 부드러운 애니메이션 🔧 기술적 개선: - PDF.js 워커 설정 및 토큰 인증 처리 - 서적별 PDF 자동 그룹화 로직 - Alpine.js 컴포넌트 초기화 최적화
88 lines
1.8 KiB
TOML
88 lines
1.8 KiB
TOML
[tool.poetry]
|
|
name = "document-server"
|
|
version = "0.1.0"
|
|
description = "HTML Document Management and Viewer System"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
fastapi = "^0.104.0"
|
|
uvicorn = {extras = ["standard"], version = "^0.24.0"}
|
|
sqlalchemy = "^2.0.0"
|
|
asyncpg = "^0.29.0"
|
|
alembic = "^1.12.0"
|
|
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
|
|
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
|
|
python-multipart = "^0.0.6"
|
|
pillow = "^10.0.0"
|
|
redis = "^5.0.0"
|
|
pydantic = {extras = ["email"], version = "^2.4.0"}
|
|
pydantic-settings = "^2.0.0"
|
|
python-dotenv = "^1.0.0"
|
|
httpx = "^0.25.0"
|
|
aiofiles = "^23.2.0"
|
|
jinja2 = "^3.1.0"
|
|
beautifulsoup4 = "^4.13.0"
|
|
pypdf2 = "^3.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.0"
|
|
pytest-asyncio = "^0.21.0"
|
|
black = "^23.9.0"
|
|
isort = "^5.12.0"
|
|
flake8 = "^6.1.0"
|
|
mypy = "^1.6.0"
|
|
pre-commit = "^3.5.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py311']
|
|
include = '\.pyi?$'
|
|
extend-exclude = '''
|
|
/(
|
|
# directories
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
line_length = 88
|
|
known_first_party = ["src"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
check_untyped_defs = true
|
|
disallow_untyped_decorators = true
|
|
no_implicit_optional = true
|
|
warn_redundant_casts = true
|
|
warn_unused_ignores = true
|
|
warn_no_return = true
|
|
warn_unreachable = true
|
|
strict_equality = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"passlib.*",
|
|
"jose.*",
|
|
"redis.*",
|
|
]
|
|
ignore_missing_imports = true
|