Metadata-Version: 2.1
Name: farm-ng-core
Version: 0.1.2
Home-page: https://github.com/farm-ng/farm-ng-core
Download-URL: https://github.com/farm-ng/farm-ng-core
Author: Farm-ng Inc.
Author-email: info@farm-ng.com
Keywords: robotics,open-source
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Framework :: Robot Framework
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# farm-ng-core

[![PyPI version](https://badge.fury.io/py/farm-ng-core.svg)](https://pypi.org/project/farm-ng-core)

## Build on MacOS

Make sure ports is installed: https://www.macports.org/install.php

Install dependencies, once:

```
sudo port install cmake
sudo PATH=$PATH port install protobuf3-cpp
sudo port install ccache
sudo port install pre-commit
sudo port select --set virtualenv virtualenv310
```

From within the repo:

```
mkdir build
cd build
cmake ../super_project
make -j
```

Run pre-commit before commiting changes

```
pre-commit run -a
```
