From: yomguy Date: Tue, 20 Mar 2012 12:03:41 +0000 (+0100) Subject: fix README parsing during install, go to 0.6.2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=bed20422be84534d882dd64d03cb1257fba6edc6;p=deefuzzer.git fix README parsing during install, go to 0.6.2 --- diff --git a/setup.py b/setup.py index 5b1f617..c0d4853 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,8 @@ import os __version__ = '0.6.1' __author__ = 'yomguy@parisson.com' +README = os.path.join(os.path.dirname(__file__), 'README.rst') + # The base package metadata to be used by both distutils and setuptools METADATA = dict( name = "DeeFuzzer", @@ -24,7 +26,7 @@ METADATA = dict( include_package_data = True, scripts=['scripts/deefuzzer'], classifiers = ['Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Players',], - long_description=open('README.rst').read(), + long_description=open(README).read(), ) def Main():