Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/compas-dev/compas_robots
Basic infrastructure for working with robots in COMPAS.
https://github.com/compas-dev/compas_robots
aec kinematics python robotics robots
Last synced: 2 months ago
JSON representation
Basic infrastructure for working with robots in COMPAS.
- Host: GitHub
- URL: https://github.com/compas-dev/compas_robots
- Owner: compas-dev
- License: mit
- Created: 2023-09-19T07:25:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-30T08:25:24.000Z (3 months ago)
- Last Synced: 2024-10-30T08:31:01.539Z (3 months ago)
- Topics: aec, kinematics, python, robotics, robots
- Language: Python
- Homepage: http://compas.dev/compas_robots/
- Size: 25.4 MB
- Stars: 1
- Watchers: 8
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Authors: AUTHORS.md
Awesome Lists containing this project
README
# COMPAS Robots
Basic infrastructure for working with robots in COMPAS.
## Getting started with this project
### Setup code editor
1. Open project folder in VS Code
2. Select python environment for the project
3. First time using VS Code and on Windows? Make sure select the correct terminal profile: `Ctrl+Shift+P`, `Terminal: Select Default Profile` and select `Command Prompt`.> All terminal commands in the following sections can be run from the VS Code integrated terminal.
### First steps with git
1. Go to the `Source control` tab
2. Make an initial commit with all newly created files### First steps with code
1. Install the newly created project
pip install -e .
2. Install it on Rhino
python -m compas_rhino.install
### Code conventions
Code convention follows [PEP8](https://pep8.org/) style guidelines and line length of 120 characters.
1. Check adherence to style guidelines
invoke lint
2. Format code automatically
invoke format
### Documentation
Documentation is generated automatically out of docstrings and [RST](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html) files in this repository
1. Generate the docs
invoke docs
2. Check links in docs are valid
invoke linkcheck
3. Open docs in your browser (file explorer -> `dist/docs/index.html`)
### Testing
Tests are written using the [pytest](https://docs.pytest.org/) framework
1. Run all tests from terminal
invoke test
2. Or run them from VS Code from the `Testing` tab
### Publish release
Releases follow the [semver](https://semver.org/spec/v2.0.0.html) versioning convention.
1. Create a new release
invoke release major