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
|
# Copyright 2009 Heikki Toivonen. All rights reserved.
# epydoc --no-private -v --config=epydoc.conf
[epydoc]
name = M2Crypto
url = http://chandlerproject.org/Projects/MeTooCrypto
output = html
target = doc/api
graph = all
sourcecode = no
private = no
modules = ./M2Crypto
# Private
exclude-introspect = M2Crypto.__m2crypto
# Variable shadows module, which causes the module to double in the doc
# with second instance showing '. Exclude so we only get one (with ').
exclude = M2Crypto.PGP.PublicKey
exclude = M2Crypto.PGP.PublicKeyRing
exclude = M2Crypto.PGP.packet
exclude = M2Crypto.SSL.Cipher
exclude = M2Crypto.SSL.Connection
exclude = M2Crypto.SSL.Context
exclude = M2Crypto.SSL.SSLServer
exclude = M2Crypto.SSL.ssl_dispatcher
exclude = M2Crypto.SSL.timeout
|