Metadata-Version: 2.1
Name: cbee
Version: 0.1.0
Summary: C/C++ build tools and package manager.
Home-page: https://github.com/bee-field/cbee
Author: David Cavazos
Author-email: dcavazosw@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
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 :: C
Classifier: Programming Language :: C++
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Compilers
Description-Content-Type: text/markdown
Requires-Dist: cmake
Requires-Dist: conan

# CBee - C/C++ build tools and package manager

CBee is a toolchain to build and package C/C++ applications and libraries.

## Installing cbee

```sh
python3 -m venv env
source env/bin/activate
```

```sh
pip install -U cbee
```

> ```sh
> pip install -e .
> ```

## Using cbee

### Running a basic C/C++ application

```c
// say-hello.c
#include <stdio.h>

int main() {
  printf("Hello!\n");
  return 0;
}
```

```sh
cbee run

./app
```

```sh
cbee build

./app
```

### Installing libraries

```sh
cbee install eigen
```

```sh
cbee update
```

### Managing dependencies

```txt
# libs.txt
- stdlib
- m
```


