Metadata-Version: 2.4
Name: justvenv
Version: 0.3.0
Summary: One-liner venv creation and activation tool
Author-email: Yonghye Kwon <developer.0hye@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/developer0hye/justvenv
Project-URL: Repository, https://github.com/developer0hye/justvenv
Keywords: venv,virtualenv,virtual environment,activation
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# justvenv

[![Test](https://github.com/developer0hye/justvenv/actions/workflows/test.yml/badge.svg)](https://github.com/developer0hye/justvenv/actions/workflows/test.yml)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Tired of typing `python -m venv .venv && .venv\Scripts\activate`?  
Just type `venv`.

## Installation

```bash
pip install justvenv
venv  # Automatically configures your shell
```

Restart your shell after setup (or run `. $PROFILE`)

## Usage

```bash
venv        # Create .venv + activate
deactivate  # Deactivate
```

That's it!

## Supported Environments

- **OS**: Windows, macOS, Linux
- **Python**: 3.8+
- **Shell**: PowerShell, Bash, Zsh, Fish, Git Bash

## License

MIT License
