-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1391 from sot/stat-reports
add recipes for acq_stat_reports and guide_stat_reports
- Loading branch information
Showing
3 changed files
with
64 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package: | ||
name: acq_stat_reports | ||
version: {{ SKA_PKG_VERSION }} | ||
|
||
build: | ||
script: pip install . | ||
|
||
source: | ||
path: {{ SKA_TOP_SRC_DIR }}/acq_stat_reports | ||
|
||
|
||
# the build and runtime requirements. Dependencies of these requirements | ||
# are included automatically. | ||
requirements: | ||
# Packages required to build the package. python and numpy must be | ||
# listed explicitly if they are required. | ||
build: | ||
- python | ||
- setuptools | ||
- setuptools_scm | ||
- setuptools_scm_git_archive | ||
# Packages required to run the package. These are the dependencies that | ||
# will be installed automatically whenever the package is installed. | ||
run: | ||
- python | ||
- setuptools_scm | ||
|
||
about: | ||
home: https://github.com/sot/acq_stat_reports | ||
summary: Display star acquisition statistics trends | ||
dev_url: https://github.com/sot/acq_stat_reports |
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,31 @@ | ||
package: | ||
name: guide_stat_reports | ||
version: {{ SKA_PKG_VERSION }} | ||
|
||
build: | ||
script: pip install . | ||
|
||
source: | ||
path: {{ SKA_TOP_SRC_DIR }}/guide_stat_reports | ||
|
||
|
||
# the build and runtime requirements. Dependencies of these requirements | ||
# are included automatically. | ||
requirements: | ||
# Packages required to build the package. python and numpy must be | ||
# listed explicitly if they are required. | ||
build: | ||
- python | ||
- setuptools | ||
- setuptools_scm | ||
- setuptools_scm_git_archive | ||
# Packages required to run the package. These are the dependencies that | ||
# will be installed automatically whenever the package is installed. | ||
run: | ||
- python | ||
- setuptools_scm | ||
|
||
about: | ||
home: https://github.com/sot/guide_stat_reports | ||
summary: Display guide star statistics trends | ||
dev_url: https://github.com/sot/guide_stat_reports |