Files
Todo-Project/backend/pyproject.toml
Hyungi Ahn 5c9ea92fb8 백업용
2025-09-19 09:13:44 +09:00

61 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>=2.5.0",
"pydantic-settings>=2.1.0",
"pillow>=10.0.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