Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update project name #40

Merged
merged 2 commits into from
Nov 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
cmake_minimum_required(VERSION 3.16)
# https://semver.org/
project(amiga_brain_api VERSION 0.1.0)
project(farm_ng_amiga VERSION 0.1.0)


find_package(farm_ng_cmake 0.1.0 REQUIRED)
farm_ng_module(amiga_brain_api)
farm_ng_module(farm_ng_amiga)

find_package(farm_ng_core 0.1.0 REQUIRED)
find_package(Sophus REQUIRED)
Expand All @@ -17,5 +17,5 @@ farm_ng_enable_testing()
add_subdirectory(protos)

farm_ng_export_module(
NAME amiga_brain_api
NAME farm_ng_amiga
REQUIRED_DEPS farm_ng_core Sophus)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# farm-ng Brain SDK
# farm-ng-amiga

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

Expand All @@ -25,13 +25,13 @@ sudo pip3 install virtualenv
Clone the project:

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

Start a virtual environment:

```bash
# assuming you're already in the amiga-brain-api/ directory
# assuming you're already in the farm-ng-amiga/ directory
python3 -m venv venv
source venv/bin/activate
```
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ long_description = file: README.md
long_description_content_type = text/markdown
author = farm-ng Inc.
author_email = info@farm-ng.com
url = https://github.com/farm-ng/amiga-brain-api
download_url = https://github.com/farm-ng/amiga-brain-api
url = https://github.com/farm-ng/farm-ng-amiga
download_url = https://github.com/farm-ng/farm-ng-amiga
keywords = robotics
license_files = LICENSE
classifiers =
Expand Down