Description: Remove dependency on epydoc
 Removes the package's dependency on epydoc.  Technically, the module
 is still imported in pydoctor/html.py, but its an optional dependency,
 and the implementation falls back on a "boring docstring" if epydoc
 isn't available.  This isn't ideal, but given that epydoc only works
 with Python 2 and can't be converted to Python 3, it's a reasonable
 workaround that keeps pydoctor in the archive.
Author: Kenneth J. Pronovici <pronovic@debian.org>
Bug-Debian: https://bugs.debian.org/932584
Last-Update: 2019-07-30

--- pydoctor-16.3.0.orig/setup.cfg
+++ pydoctor-16.3.0/setup.cfg
@@ -3,7 +3,6 @@ optimize=1
 
 [bdist_rpm]
 release = 1
-requires = epydoc
 doc_files = README.txt
 
 
--- pydoctor-16.3.0.orig/setup.py
+++ pydoctor-16.3.0/setup.py
@@ -40,5 +40,5 @@ setup(
         'Topic :: Documentation',
         'Topic :: Software Development :: Documentation',
     ],
-    install_requires=["Twisted", "epydoc"],
+    install_requires=["Twisted"],
 )
