- 체크리스트 섹션에 이미지 썸네일 미리보기 추가 (16x16) - 대시보드 상단 체크리스트 카드에 이미지 미리보기 기능 추가 - 이미지 클릭 시 전체 화면 모달로 확대 보기 - 백엔드 image_url 컬럼을 TEXT 타입으로 변경하여 Base64 이미지 지원 - 파일 업로드를 이미지만 지원하도록 단순화 (file_url, file_name 제거) - 422 validation 오류 해결 및 상세 로깅 추가 - 체크리스트 렌더링 누락 문제 해결
63 lines
1.1 KiB
TOML
63 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[project]
|
|
name = "todo-project"
|
|
version = "0.1.0"
|
|
description = "독립적인 할일 관리 시스템"
|
|
# readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"fastapi>=0.104.1",
|
|
"uvicorn[standard]>=0.24.0",
|
|
"sqlalchemy>=2.0.23",
|
|
"alembic>=1.12.1",
|
|
"asyncpg>=0.29.0",
|
|
"python-multipart>=0.0.6",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"passlib[bcrypt]>=1.7.4",
|
|
"python-dotenv>=1.0.0",
|
|
"pydantic[email]>=2.5.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"pillow>=10.0.0",
|
|
"aiohttp>=3.9.0",
|
|
"caldav>=1.3.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.3",
|
|
"pytest-asyncio>=0.21.1",
|
|
"httpx>=0.25.2",
|
|
"black>=23.11.0",
|
|
"isort>=5.12.0",
|
|
"flake8>=6.1.0",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py38']
|
|
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
|