Skip to content

Commit

Permalink
added autosummary pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Jul 8, 2016
1 parent ffac20e commit 09b62a2
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
Expand Down
17 changes: 16 additions & 1 deletion pumpp/feature/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''Feature extractors'''
'''
Feature extractors
==================
.. autosummary::
:toctree: generated/
FeatureExtractor
CQT
CQTMag
CQTPhaseDiff
STFT
STFTMag
STFTPhaseDiff
Mel
'''

from .base import *
from .cqt import *
Expand Down
15 changes: 14 additions & 1 deletion pumpp/task/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''Task transformations'''
'''
Task transformations
====================
.. autosummary::
:toctree: generated/
BaseTaskTransformer
BeatTransformer
ChordTransformer
SimpleChordTransformer
VectorTransformer
DynamicLabelTransformer
StaticLabelTransformer
'''

from .base import *
from .chord import *
Expand Down

0 comments on commit 09b62a2

Please sign in to comment.