Metadata-Version: 2.4
Name: cxx-flow
Version: 0.7.0
Summary: C++ project maintenance, automated
Project-URL: Homepage, https://pypi.org/project/cxx-flow/
Project-URL: Source Code, https://github.com/mzdun/cxx-flow
Project-URL: Documentation, https://readthedocs.org
Author-email: Marcin Zdun <marcin.zdun@gmail.com>
License-File: LICENSE
Keywords: C/C++,c++,ci,cpp,dependency,developer,manager,tool
Classifier: Development Status :: 4 - Beta
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.10
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.10
Requires-Dist: argcomplete
Requires-Dist: chevron2021
Requires-Dist: prompt-toolkit
Requires-Dist: pyyaml
Description-Content-Type: text/markdown

# C++ flow

**C++ flow** aims at being a one-stop tool for C++ projects, from creating new
project, though building and verifying, all the way to publishing releases to
the repository. It will run a set of known steps and will happily consult your
project what do you want to call any subset of those steps.

Currently, it will make use of Conan for external dependencies, CMake presets
for config and build and GitHub CLI for releases.

## Installation

To create a new project with _C++ flow_, first install it using pip:

```sh
(.venv) $ pip install cxx-flow
```

Every project created with _C++ flow_ has a self-bootstrapping helper script,
which will install `cxx-flow` if it is needed, using either current virtual
environment or switching to a private virtual environment (created inside
`.flow/.venv` directory). This is used by the GitHub workflow in the generated
projects through the `bootstrap` command.

On any platform, this command (and any other) may be called from the root of the
project with:

```sh
python .flow/flow.py bootstrap
```

From Bash with:

```sh
./flow bootstrap
```

From PowerShell with:

```sh
.\flow bootstrap
```

## Creating a project

A fresh C++ project can be created with a

```sh
cxx-flow init
```

This command will ask multiple questions to build Mustache context for the
project template. For more information, see [the documentation](https://cxx-flow.readthedocs.io/en/latest/).
