Skip to content

Commit

Permalink
Move tools to optional deps
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmo385 committed Jun 19, 2024
1 parent c1ac533 commit 559e686
Show file tree
Hide file tree
Showing 3 changed files with 1,547 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lazy_github/ui/screens/primary.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from github.PullRequest import PullRequest
from textual import log
from textual.app import ComposeResult
from textual.containers import Container, ScrollableContainer
from textual.containers import Container
from textual.reactive import reactive
from textual.screen import Screen
from textual.widget import Widget
Expand Down
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ dependencies = [
"PyGithub",
"httpx",
"pydantic",
"pyright",
"textual",
"textual-dev",
]

[project.optional-dependencies]
checks = [
"pyright",
"ruff",
]

[project.scripts]
lazy-github = "lazy_github:main"

Expand Down
Loading

0 comments on commit 559e686

Please sign in to comment.