diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-03-30 16:20:14 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-30 16:20:14 -0400 | 
| commit | 12f9c2e9fb32ca86366604e24bef6a3089096cd1 (patch) | |
| tree | c8a39b6f7511faca6fa2053980b4ed382f1a04b0 /stsci_rtd_theme | |
| parent | cdbe91039e4f02bed02524ca5c26691af81369c1 (diff) | |
| download | astroconda-dev-12f9c2e9fb32ca86366604e24bef6a3089096cd1.tar.gz | |
Fixup drizzlepac, stsci.skypac, add stsci_rtd_theme (#123)
Diffstat (limited to 'stsci_rtd_theme')
| -rw-r--r-- | stsci_rtd_theme/bld.bat | 1 | ||||
| -rw-r--r-- | stsci_rtd_theme/build.sh | 1 | ||||
| -rw-r--r-- | stsci_rtd_theme/meta.yaml | 34 | 
3 files changed, 36 insertions, 0 deletions
| diff --git a/stsci_rtd_theme/bld.bat b/stsci_rtd_theme/bld.bat new file mode 100644 index 0000000..4a7ed5f --- /dev/null +++ b/stsci_rtd_theme/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install --single-version-externally-managed --record=record.txt diff --git a/stsci_rtd_theme/build.sh b/stsci_rtd_theme/build.sh new file mode 100644 index 0000000..a660906 --- /dev/null +++ b/stsci_rtd_theme/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install --single-version-externally-managed --record=record.txt diff --git a/stsci_rtd_theme/meta.yaml b/stsci_rtd_theme/meta.yaml new file mode 100644 index 0000000..d0af645 --- /dev/null +++ b/stsci_rtd_theme/meta.yaml @@ -0,0 +1,34 @@ +{% set name = 'stsci_rtd_theme' %} +{% set version = '0.0.1' %} +{% set number = '0' %} + +about: +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD +    summary: | +        ReadTheDocs.org theme for STScI + +build: +    number: {{ number }} + +package: +    name: {{ name }} +    version: {{ version }} + +requirements: +    build: +      - sphinx +      - setuptools +      - python {{ python }} + +    run: +      - sphinx +      - python + +source: +    git_tag: {{ version }} +    git_url: https://github.com/spacetelescope/{{ name }}.git + +test: +    imports: +      - stsci_rtd_theme | 
