Metadata-Version: 2.1
Name: farm-ng-amiga
Version: 0.0.4
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-package
Requires-Dist: farm-ng-core
Requires-Dist: sophus
Provides-Extra: dev
Requires-Dist: pytest (==7.1.2) ; extra == 'dev'
Requires-Dist: pytest-asyncio (==0.19.0) ; extra == 'dev'
Requires-Dist: pytest-mypy (==0.9.1) ; extra == 'dev'
Requires-Dist: pylint-protobuf (==0.20.2) ; extra == 'dev'
Requires-Dist: pre-commit (==2.20.0) ; extra == 'dev'
Requires-Dist: mypy (==0.971) ; 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'

# 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]
```
