diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-07-05 15:06:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-05 15:06:34 -0400 |
commit | 2c93b79d40654a5947d9131f681a8a8089a8274f (patch) | |
tree | 1d0771fe8447c65b7395b185bcb396b3da157505 /sphinx-automodapi | |
parent | 4e78993851484be6dcc5bb1611fa56ab8473f1a3 (diff) | |
download | astroconda-contrib-2c93b79d40654a5947d9131f681a8a8089a8274f.tar.gz |
Add sphinx-automodapi (#521)
Diffstat (limited to 'sphinx-automodapi')
-rw-r--r-- | sphinx-automodapi/meta.yaml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sphinx-automodapi/meta.yaml b/sphinx-automodapi/meta.yaml new file mode 100644 index 0000000..3e87b00 --- /dev/null +++ b/sphinx-automodapi/meta.yaml @@ -0,0 +1,42 @@ +{% set name = "sphinx-automodapi" %} +{% set version = "0.10" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: 5c989bfe37f555f635e8fbb650859df391556981f5a436507fb3241794fd26c6 + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " + +requirements: + host: + - pip + - python + - sphinx >=1.3 + run: + - python + - sphinx >=1.3 + +test: + imports: + - sphinx_automodapi + #- sphinx_automodapi.tests + #- sphinx_automodapi.tests.example_module + +about: + home: http://astropy.org + license: BSD + license_family: BSD + license_file: + summary: Sphinx extension for auto-generating API documentation for entire modules + doc_url: + dev_url: + +extra: + recipe-maintainers: + - your-github-id-here |