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
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,18 @@ jobs:
with:
python-version: "3.12"
- run: uv sync --dev
- run: uv run mypy tame/ --ignore-missing-imports
- run: uv run mypy tame/

test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}
- run: uv sync --dev
- run: uv run pytest tests/ --tb=short -v

Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ build/
.venv/
*.egg
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ classifiers = [
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"Topic :: Software Development",
]
keywords = [
"terminal",
"multiplexer",
"tui",
"ai",
"agent",
"tmux",
"session",
"textual",
]
dependencies = [
"textual>=0.47.0",
"rich>=13.0.0",
Expand Down Expand Up @@ -57,6 +67,13 @@ path = "tame/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["tame"]

[tool.ruff]
target-version = "py311"

[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true

[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
Empty file added tame/py.typed
Empty file.