Metadata-Version: 2.1
Name: multivenv
Version: 1.0.0a11
Summary: Python Virtualenv manager supporting multiple venvs and platforms in one project
Home-page: https://github.com/nickderobertis/multivenv
Author: Nick DeRobertis
Author-email: derobertis.nick@gmail.com
License: MIT
Project-URL: Code, https://github.com/nickderobertis/multivenv
Project-URL: Documentation, https://nickderobertis.github.io/multivenv
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md



[![](https://codecov.io/gh/nickderobertis/multivenv/branch/main/graph/badge.svg)](https://codecov.io/gh/nickderobertis/multivenv)
[![PyPI](https://img.shields.io/pypi/v/multivenv)](https://pypi.org/project/multivenv/)
![PyPI - License](https://img.shields.io/pypi/l/multivenv)
[![Documentation](https://img.shields.io/badge/documentation-pass-green)](https://nickderobertis.github.io/multivenv/)
![Tests Run on Ubuntu Python Versions](https://img.shields.io/badge/Tests%20Ubuntu%2FPython-3.8%20%7C%203.9%20%7C%203.10-blue)
![Tests Run on Macos Python Versions](https://img.shields.io/badge/Tests%20Macos%2FPython-3.8%20%7C%203.9%20%7C%203.10-blue)
[![Github Repo](https://img.shields.io/badge/repo-github-informational)](https://github.com/nickderobertis/multivenv/)


#  multivenv

## Overview

Python Virtualenv manager supporting multiple venvs and platforms in one project

## Getting Started

Install `multivenv`:

```
pip install multivenv
```

A simple example:

```python
import multivenv

# Do something with multivenv
```

See a
[more in-depth tutorial here.](
https://nickderobertis.github.io/multivenv/tutorial.html
)

## Development Status

This project is currently in early-stage development. There may be
breaking changes often. While the major version is 0, minor version
upgrades will often have breaking changes.

## Developing

First ensure that you have `pipx` installed, if not, install it with `pip install pipx`.

Then clone the repo and run `npm install` and `pipenv sync`. Run `pipenv shell`
to use the virtual environment. Make your changes and then run `nox` to run formatting,
linting, and tests.

Develop documentation by running `nox -s docs` to start up a dev server.

To run tests only, run `nox -s test`. You can pass additional arguments to pytest
by adding them after `--`, e.g. `nox -s test -- -k test_something`.

## Author

Created by Nick DeRobertis. MIT License.

## Links

See the
[documentation here.](
https://nickderobertis.github.io/multivenv/
)
