Skip to content

Commit 3a26cf4

Browse files
author
GitHub Actions on github.com/conda-forge/staged-recipes
committed
Initial feedstock commit with conda-smithy 3.9.0.
0 parents  commit 3a26cf4

3 files changed

Lines changed: 71 additions & 0 deletions

File tree

conda-forge.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

recipe/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Peter Corke
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

recipe/meta.yaml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{% set name = "spatialmath-python" %}
2+
{% set version = "0.9.2" %}
3+
4+
5+
package:
6+
name: {{ name|lower }}
7+
version: {{ version }}
8+
9+
source:
10+
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/spatialmath-python-{{ version }}.tar.gz
11+
sha256: c542aba9ef2dd77f676e62ed5f7d0d658ce7de717baffb6af6e27da705c7d2d0
12+
13+
build:
14+
number: 0
15+
noarch: python
16+
script: {{ PYTHON }} -m pip install . -vv
17+
18+
requirements:
19+
host:
20+
- pip
21+
- python >=3.6
22+
run:
23+
- ansitable
24+
- colored
25+
- matplotlib-base
26+
- numpy
27+
- python >=3.6
28+
- scipy
29+
30+
test:
31+
imports:
32+
- spatialmath
33+
- spatialmath.base
34+
commands:
35+
- pip check
36+
requires:
37+
- pip
38+
39+
about:
40+
home: https://github.com/petercorke/spatialmath-python
41+
summary: Provides spatial maths capability for Python.
42+
dev_url: https://github.com/petercorke/spatialmath-python
43+
license: MIT
44+
license_file: LICENSE
45+
46+
extra:
47+
recipe-maintainers:
48+
- Tobias-Fischer
49+
- petercorke

0 commit comments

Comments
 (0)