-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package for qpoint. Fix so3g recipe.
- Loading branch information
Showing
10 changed files
with
107 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
pysqlite3-wheels | ||
quaternionarray | ||
qpoint | ||
pysm3 | ||
# | ||
# Uncomment here if installing wheel, and comment out | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2017 Alexandra Rahlin | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
set -e | ||
set -x | ||
|
||
python -m pip install -vvv --ignore-installed --no-deps --prefix "${PREFIX}" . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{% set version = "1.12.4" %} | ||
{% set sha256 = "d9acae381fbafdc57aac865fe87a009d164d06162c320982876bd000b936d223" %} | ||
|
||
{% set build = 0 %} | ||
|
||
package: | ||
name: qpoint | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/arahlin/qpoint/archive/{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: {{ build }} | ||
skip: true # [win] | ||
script_env: | ||
- QPOINT_VERSION={{ version }} | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- llvm-openmp # [osx] | ||
- libgomp # [linux] | ||
host: | ||
- llvm-openmp # [osx] | ||
- libgomp # [linux] | ||
- python | ||
- setuptools | ||
- numpy | ||
# Although not a dependency, we put numba here to force | ||
# building with a numba-compatible numpy version | ||
- numba | ||
# Adding astropy as a host dependency will download the current | ||
# IERS data and store it in the package | ||
- astropy | ||
run: | ||
- python | ||
- {{ pin_compatible('numpy') }} | ||
|
||
test: | ||
imports: | ||
- qpoint | ||
|
||
about: | ||
home: https://github.com/arahlin/qpoint | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
summary: Quaternion library for telescope pointing | ||
description: | | ||
A lightweight quaternion-based library for telescope pointing | ||
dev_url: https://github.com/arahlin/qpoint | ||
|
||
extra: | ||
recipe-maintainers: | ||
- tskisner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters