From 6129a1f78259ca42e1a739604879d42b1c6e82c9 Mon Sep 17 00:00:00 2001 From: Justin Ely Date: Wed, 8 Feb 2017 21:17:23 -0500 Subject: Theme addition (#161) * add initial recipe for stsci_sphinx_theme * Use version to create tag string --- stsci_sphinx_theme/bld.bat | 1 + stsci_sphinx_theme/build.sh | 1 + stsci_sphinx_theme/meta.yaml | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 stsci_sphinx_theme/bld.bat create mode 100644 stsci_sphinx_theme/build.sh create mode 100644 stsci_sphinx_theme/meta.yaml 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 -- cgit