3
from distutils.core import setup
10
version=testdoc.__version__,
11
description="Tool to convert Python unit tests into documentation.",
12
author="Jonathan Lange",
13
author_email='jml@mumak.net',
14
url='https://launchpad.net/testdoc',
16
scripts=['bin/testdoc'],
17
long_description=("Testdoc scans unit test modules, extracting the class "
18
"and method names and converting them into natural-"
19
"language phrases, followed by whatever docstrings or "
20
"comments are in the file"))