Skip to content

Commit

Permalink
pip: initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed May 18, 2024
1 parent fb03b34 commit 5c38c51
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ env:
CTEST_PARALLEL_LEVEL: 4

jobs:
ci:
name: "CI"
cmake:
name: "CMake"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
Expand All @@ -21,3 +21,13 @@ jobs:
- run: cmake -B build -S .
- run: cmake --build build
- run: cmake --build build -t test
pip:
name: "Pip"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- run: python -m pip install -U pip
- run: python -m pip install .
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[build-system]
build-backend = "cmeel"
requires = ["cmeel[build]", "pin", "pyyaml"]

[project]
name = "example-parallel-robots"
description = "Set of parallel robot models for general use in benchmarks and examples"
version = "0.0.1"
dependencies = [
"pin",
"pyyaml",
]

[tool.cmeel]
# TODO: fix casadi
run-tests = false

0 comments on commit 5c38c51

Please sign in to comment.