Metadata-Version: 2.4
Name: localstack
Version: 4.13.2.dev36
Summary: The LocalStack Command Line Interface
Author-email: LocalStack Contributors <info@localstack.cloud>
License-Expression: Apache-2.0
Project-URL: Homepage, https://localstack.cloud
Project-URL: Documentation, https://docs.localstack.cloud
Project-URL: Repository, https://github.com/localstack/localstack.git
Project-URL: Issues, https://github.com/localstack/localstack/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: asn1crypto
Requires-Dist: cachetools>=5.0
Requires-Dist: click>=8.2.0
Requires-Dist: cryptography
Requires-Dist: dnslib>=0.9.10
Requires-Dist: dnspython>=1.16.0
Requires-Dist: docker>=6.1.1
Requires-Dist: plux>=1.14.0
Requires-Dist: psutil>=5.4.8
Requires-Dist: python-dotenv>=0.19.1
Requires-Dist: pyyaml>=5.1
Requires-Dist: rich>=12.3.0
Requires-Dist: requests>=2.20.0
Requires-Dist: semver>=2.10
Requires-Dist: tabulate
Requires-Dist: packaging
Requires-Dist: pyotp>=2.9.0
Requires-Dist: PyJWT[crypto]>=1.7.0
Requires-Dist: python-dateutil>=2.8
Requires-Dist: windows-curses; platform_system == "Windows"
Provides-Extra: test
Requires-Dist: pytest>=7.4.2; extra == "test"
Requires-Dist: pytest-httpserver>=1.1.2; extra == "test"
Requires-Dist: pytest-tinybird>=0.5.0; extra == "test"
Requires-Dist: boto3; extra == "test"
Requires-Dist: jsonpatch; extra == "test"
Requires-Dist: xmltodict; extra == "test"
Requires-Dist: cbor2; extra == "test"
Requires-Dist: hypercorn; extra == "test"
Requires-Dist: flask; extra == "test"
Requires-Dist: rolo; extra == "test"
Provides-Extra: dev
Requires-Dist: localstack[test]; extra == "dev"
Requires-Dist: libcst; extra == "dev"
Requires-Dist: ruff>=0.3.3; extra == "dev"
Requires-Dist: pre-commit>=3.5.0; extra == "dev"

# LocalStack CLI

The command-line interface for [LocalStack](https://localstack.cloud), a cloud service emulator that runs on your laptop or in your CI environment.

## Installation

```bash
pip install localstack-cli-standalone
```

Requires Docker to be installed and running.

## Usage

Start LocalStack:

```bash
localstack start
```

Check service status:

```bash
localstack status services
```

Stop LocalStack:

```bash
localstack stop
```

## Documentation

For full documentation, visit [docs.localstack.cloud](https://docs.localstack.cloud).

## License

Apache License 2.0
