File: generate.sh

package info (click to toggle)
python-duniterpy 1.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,228 kB
  • sloc: python: 10,624; makefile: 182; sh: 17
file content (10 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

# Infos how-to generate automatically all rst documents for a python package :
# http://stackoverflow.com/questions/4616693/automatically-generating-documentation-for-all-python-package-contents

# generate rst files of all the package
sphinx-apidoc -o . ../duniterpy

# generate HTML
make html