Metadata-Version: 2.4
Name: fastdb4py
Version: 0.1.0
Summary: FastCarto database bindings
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Dynamic: license-file

# fastdb (v0.0.0 WIP)

A C++ local database library with cross language bindings. Aiming to be a fast, lightweight, and easy-to-use data communication solution for RPC and coupled modeling in scientific computing.

Wait and hope for the best...

## Building

Fastdb uses CMake as its build system. Below are instructions for building the core library and cross language bindings.

### Python Bindings

```bash
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_SWIG_PYTHON=ON 
cmake --build . --config Release --parallel
```
