diff options
-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 |