diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-01-23 15:01:45 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-23 15:01:45 -0500 | 
| commit | 4c0c5e2c73887fd1910cfea0dfd8e286814bb396 (patch) | |
| tree | 1cff947e2b0e87cdadd6e2f55f9e518f73df045a /hlapipeline | |
| parent | 9be10c24f80cb193874a8d47cf67ce2481258507 (diff) | |
| parent | 094afc31387e647022971d64a3735bbf80892784 (diff) | |
| download | astroconda-dev-4c0c5e2c73887fd1910cfea0dfd8e286814bb396.tar.gz | |
Merge pull request #181 from rendinam/add_hlapipeline
Add hlapipeline
Diffstat (limited to 'hlapipeline')
| -rw-r--r-- | hlapipeline/bld.bat | 1 | ||||
| -rw-r--r-- | hlapipeline/build.sh | 1 | ||||
| -rw-r--r-- | hlapipeline/meta.yaml | 56 | 
3 files changed, 58 insertions, 0 deletions
diff --git a/hlapipeline/bld.bat b/hlapipeline/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/hlapipeline/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/hlapipeline/build.sh b/hlapipeline/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/hlapipeline/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/hlapipeline/meta.yaml b/hlapipeline/meta.yaml new file mode 100644 index 0000000..22f2ba7 --- /dev/null +++ b/hlapipeline/meta.yaml @@ -0,0 +1,56 @@ +{% set name = 'hlapipeline' %} +{% set version = GIT_DESCRIBE_TAG ~ ".dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %} +{% if version[0] == 'v' %} +{%   set version = version[1:] %} +{% endif %} +{% set number = '0' %} + +about: +    home: https://github.com/spacetelescope/hlapipeline.git +    license: BSD +    summary: Software related to the migration of the HLA to the pipeline + +build: +    number: {{ number }} + +package: +    name: {{ name }} +    version: {{ version }} + +requirements: +    build: +    - click>=6.0 +    - photutils +    - astroquery +    - sphinx_rtd_theme +    - stsci_rtd_theme +    - stwcs +    - setuptools +    - pytest-runner +    - numpy {{ numpy }} +    - python {{ python }} + +    run: +    - click>=6.0 +    - astropy +    - scipy +    - matplotlib +    - photutils +    - pyyaml +    - astroquery +    - scipy +    - sphinx +    - sphinx_rtd_theme +    - stsci_rtd_theme +    - stsci.tools +    - stwcs +    - setuptools +    - numpy {{ numpy }} +    - python {{ python }} + +source: +    git_url: https://github.com/spacetelescope/{{ name }}.git + +test: +    imports: +    - hlapipeline  | 
