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
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,23 @@ The AWS ECS web console is confusing to navigate, with multiple clicks through d

## Installation

### Homebrew (Recommended)
### pipx

[pipx](https://pipx.pypa.io/) installs Python CLI tools in isolated environments:

```bash
# Install pipx if you haven't already
python3 -m pip install --user pipx
python3 -m pipx ensurepath

# Install lazy-ecs
pipx install lazy-ecs

# Run it
lazy-ecs
```

### Homebrew

```bash
# Add the tap
Expand Down
24 changes: 23 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,40 @@
[project]
name = "lazy-ecs"
version = "0.3.0"
version = "0.3.1"
description = "A CLI tool for working with AWS services"
readme = "README.md"
authors = [
{ name = "Janne Sinivirta", email = "janne.sinivirta@gmail.com" },
]
requires-python = ">=3.11"
keywords = ["aws", "ecs", "cli", "terminal", "tui", "devops", "container", "fargate", "docker", "interactive"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"questionary==2.1.1",
"boto3==1.40.41",
"rich==14.1.0",
]

[project.urls]
Homepage = "https://github.com/vertti/lazy-ecs"
Repository = "https://github.com/vertti/lazy-ecs"
Issues = "https://github.com/vertti/lazy-ecs/issues"
Documentation = "https://github.com/vertti/lazy-ecs#readme"

[project.scripts]
lazy-ecs = "lazy_ecs:main"

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading