Metadata-Version: 2.1
Name: farm_ng_amiga
Version: 2.3.2
Summary: Amiga development kit for third party hardware or software extensions
Home-page: https://github.com/farm-ng/farm-ng-amiga
Download-URL: https://github.com/farm-ng/farm-ng-amiga
Author: farm-ng Inc.
Author-email: info@farm-ng.com
Keywords: robotics
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary 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
License-File: LICENSE
Requires-Dist: protobuf
Requires-Dist: grpcio
Requires-Dist: farm_ng_core
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-asyncio; extra == "dev"
Requires-Dist: pytest-mypy; extra == "dev"
Requires-Dist: pylint-protobuf; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: types-protobuf; extra == "dev"
Requires-Dist: pylint; extra == "dev"
Requires-Dist: grpcio-tools; extra == "dev"
Requires-Dist: mypy-protobuf; extra == "dev"
Requires-Dist: pylint-protobuf; extra == "dev"

# farm-ng-amiga

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

## Install

### From pip

```bash
pip install farm-ng-amiga
```

### From source

We recommend running the brain SDK applications in a virtual environment to avoid conflicts with other packages / versions installed on your system.
Though this is not a requirement and you are welcome to decide how/where to install.

Install `pip3` & `virtualenv`:

```bash
sudo apt-get install python3-pip
sudo pip3 install virtualenv
```

Clone the project:

```bash
git clone https://github.com/farm-ng/farm-ng-amiga.git
```

Start a virtual environment:

```bash
# assuming you're already in the farm-ng-amiga/ directory
python3 -m venv venv
source venv/bin/activate
```

Create and install the ``farm_ng``\s (brain) Python package

```bash
# install to system
pip3 install .
```

```bash
# or for development mode
pip3 install -e .[dev]
```
