Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sync:
uv sync

venv:
uv venv .venv
uv venv .venv --clear

install: venv
uv pip install -e ".[dev]"
Expand Down
16 changes: 14 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,29 @@ name = "dddpy"
version = "2.0.1"
description = "An example of Python FastAPI Domain-Driven Design and Onion Architecture."
authors = [{ name = "iktakahiro", email = "takahiro.ikeuchi@gmail.com" }]
dependencies = ["sqlalchemy==2.0.46", "fastapi[standard]==0.128.0"]
dependencies = [
"sqlalchemy==2.0.48",
"fastapi[standard]==0.135.3",
]
readme = "README.md"
requires-python = ">=3.13"

[project.optional-dependencies]
dev = ["mypy>=1.19.1", "pytest>=9.0.2", "ruff>=0.14.14"]
dev = [
"mypy>=1.20.0",
"pytest>=9.0.2",
"ruff>=0.15.9",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.uv]
package = false
# https://docs.astral.sh/uv/reference/settings/#exclude-newer
exclude-newer = "1 week"

[tool.hatch.metadata]
allow-direct-references = true

Expand Down
Loading
Loading