Metadata-Version: 2.1
Name: sietch
Version: 0.2.0
Summary: Lightweight environment & cli tool
Home-page: https://github.com/GandalfsDad/sietch
Author: GandalfsDad
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click

# sietch
Sietch is a lightweight environment CLI tool.
It creates and manages local environments for simple projects.
It is designed to be used for small hobby projects that may share some basic environment requirements.

## Installation
```bash
pip install sietch
```

## Usage

### Create a new environment
```bash
sietch create --name MyEnv
```

### Activate an environment
Activation is not fully implemented, the command here prints the activation command.
```bash
sietch activate --name MyEnv
```

### Remove an environment
```bash
sietch remove --name MyEnv
```

### List all environments
```bash
sietch list
```
