epydoc-config 752 B

123456789101112131415161718192021222324252627
  1. # epydoc configuration file for PyCrypto.
  2. # See http://epydoc.sourceforge.net/configfile.html for sample configuration.
  3. [epydoc]
  4. modules: Crypto
  5. docformat: restructuredtext
  6. output: html
  7. target: Doc/apidoc/
  8. sourcecode: no
  9. # Do not include private variables
  10. private: no
  11. # Include the complete set of inherited methods, but grouped in a special
  12. # section
  13. inheritance: grouped
  14. name: PyCrypto API Documentation
  15. url: http://www.pycrypto.org/
  16. link: <a href="http://www.pycrypto.org/">PyCrypto.org</a>
  17. # The documentation is usually built on a Linux machine; nt.py tries to
  18. # import the winrandom module.
  19. exclude-introspect: ^Crypto\.Random\.OSRNG\.nt|Crypto\.Util\.winrandom$
  20. exclude-introspect: ^Crypto\.Util\.osentropy\.nt$
  21. exclude: ^Crypto\.SelfTest