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
10 changes: 10 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Workflow

Per-feature workflow: brainstorming → spec in
`planning/specs/YYYY-MM-DD-<slug>-design.md` → writing-plans →
plan in `planning/plans/YYYY-MM-DD-<slug>-plan.md` →
executing-plans / subagent-driven-development →
requesting-code-review → finishing-a-development-branch.

Topic slugs are kebab-case descriptions (e.g. `faststream-0.7-migration`),
not story IDs.
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
"Typing :: Typed",
"Topic :: Software Development :: Libraries",
]
dependencies = ["faststream>=0.5,<1", "modern-di>=2,<3"]
dependencies = ["faststream>=0.5,<0.7", "modern-di>=2,<3"]
version = "0"

[project.urls]
Expand All @@ -39,11 +39,12 @@ lint = [
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["uv_build>=0.11,<1.0"]
build-backend = "uv_build"

[tool.hatch.build]
include = ["modern_di_faststream"]
[tool.uv.build-backend]
module-name = "modern_di_faststream"
module-root = ""

[tool.ruff]
fix = false
Expand Down Expand Up @@ -71,7 +72,7 @@ isort.lines-after-imports = 2
isort.no-lines-before = ["standard-library", "local-folder"]

[tool.pytest.ini_options]
addopts = "--cov=. --cov-report term-missing"
addopts = "--cov=. --cov-report term-missing --cov-fail-under=100"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"

Expand Down
Loading