diff options
author | Justin Ely <ely@stsci.edu> | 2017-02-08 21:17:23 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-08 21:17:23 -0500 |
commit | 6129a1f78259ca42e1a739604879d42b1c6e82c9 (patch) | |
tree | b1de8d85c3f53e8b52d4edd028b2679c1bdd6157 | |
parent | 6f2b41d0b63a9f8fde162a3e1ffa4feaba51bf6c (diff) | |
download | astroconda-contrib-6129a1f78259ca42e1a739604879d42b1c6e82c9.tar.gz |
Theme addition (#161)
* add initial recipe for stsci_sphinx_theme
* Use version to create tag string
-rw-r--r-- | stsci_sphinx_theme/bld.bat | 1 | ||||
-rw-r--r-- | stsci_sphinx_theme/build.sh | 1 | ||||
-rw-r--r-- | stsci_sphinx_theme/meta.yaml | 32 |
3 files changed, 34 insertions, 0 deletions
diff --git a/stsci_sphinx_theme/bld.bat b/stsci_sphinx_theme/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/stsci_sphinx_theme/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/stsci_sphinx_theme/build.sh b/stsci_sphinx_theme/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/stsci_sphinx_theme/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/stsci_sphinx_theme/meta.yaml b/stsci_sphinx_theme/meta.yaml new file mode 100644 index 0000000..5ca41a9 --- /dev/null +++ b/stsci_sphinx_theme/meta.yaml @@ -0,0 +1,32 @@ +{% set name = 'stsci_sphinx_theme' %} +{% set version = '0.1.0' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +source: + git_tag: {{ tag }} + git_url: https://github.com/spacetelescope/stsci_sphinx_theme.git + +requirements: + build: + - sphinx >=1.1 + + run: + - sphinx >=1.1 + +test: + requires: + - stsci_sphinx_theme + imports: + - stsci_sphinx_theme + +about: + home: https://github.com/spacetelescope/stsci_sphinx_theme + license: BSD |