From 4976c2df8123a597b6e0143f358efadb2152bb7e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 21 Jul 2011 18:23:16 -0400 Subject: [PATCH] Add long_description (REAMDE) to setup.py. --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c45cae1..56368ae 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,18 @@ #!/usr/bin/env python + +'Transaction-tracking application for Django' + from distutils.core import setup +import os.path + + +_this_dir = os.path.dirname(__file__) setup( name='insider', version='0.1', - description='Transaction-tracking application for Django', + description=__doc__, + long_description=open(os.path.join(_this_dir, 'README'), 'r').read(), author='W. Trevor King', author_email='wking@drexel.edu', license='GPL', -- 2.26.2