Merge lp:~jkakar/txfluiddb/apidocs into lp:txfluiddb

Proposed by Jamu Kakar
Status: Merged
Approved by: Tristan Seligmann
Approved revision: 9
Merged at revision: 9
Proposed branch: lp:~jkakar/txfluiddb/apidocs
Merge into: lp:txfluiddb
Diff against target: 29 lines (+19/-0)
2 files modified
.bzrignore (+1/-0)
Makefile (+18/-0)
To merge this branch: bzr merge lp:~jkakar/txfluiddb/apidocs
Reviewer Review Type Date Requested Status
Tristan Seligmann Approve
Review via email: mp+27432@code.launchpad.net

Description of the change

This branch introduces the following changes:

- A Makefile has 'clean', 'check', 'pyflakes' and 'doc' targets.
  The 'doc' target uses Pydoctor to generate API documentation.

To post a comment you must log in.
Revision history for this message
Tristan Seligmann (mithrandi) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2009-08-18 22:27:31 +0000
3+++ .bzrignore 2010-06-12 17:46:26 +0000
4@@ -1,1 +1,2 @@
5 _trial_temp
6+apidocs
7
8=== added file 'Makefile'
9--- Makefile 1970-01-01 00:00:00 +0000
10+++ Makefile 2010-06-12 17:46:26 +0000
11@@ -0,0 +1,18 @@
12+clean:
13+ find . -name \*pyc -exec rm {} \;
14+ rm -rf _trial_temp
15+
16+check:
17+ @trial txfluiddb
18+
19+pyflakes:
20+ @pyflakes txfluiddb
21+
22+doc:
23+ @pydoctor \
24+ --project-name txFluidDB \
25+ --project-url "http://launchpad.net/txfluiddb" \
26+ --project-base-dir `pwd` \
27+ --add-package txfluiddb \
28+ --make-html
29+

Subscribers

People subscribed via source and target branches

to all changes: