-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmeta.yaml
59 lines (50 loc) · 1.53 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{% set name = "breathe" %}
{% set version = "4.35.0" %}
{% set sha256 = "5165541c3c67b6c7adde8b3ecfe895c6f7844783c4076b6d8d287e4f33d62386" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
noarch: python
number: 1
script: {{ PYTHON }} -m pip install . --no-deps -vv
requirements:
host:
- pip
- python >=3.6
- setuptools
# Detects sphinx at build time
- sphinx >=4.0,<7.0.0a
run:
- python >=3.6
- sphinx >=4.0,<7.0.0a
- docutils >=0.12
- Jinja2 >=2.7.3
- MarkupSafe >=0.23
- Pygments >=1.6
test:
imports:
- breathe
about:
home: https://github.com/michaeljones/breathe
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: An extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output.
description: |
Breathe provides a bridge between the Sphinx and Doxygen documentation systems.
It is an easy way to include Doxygen information in a set of documentation
generated by Sphinx. The aim is to produce an autodoc like support for
people who enjoy using Sphinx but work with languages other than Python.
The system relies on the Doxygen’s xml output.
doc_url: http://breathe.readthedocs.io/
dev_url: https://github.com/michaeljones/breathe
extra:
recipe-maintainers:
- SylvainCorlay
- JohanMabille
- hmaarrfk