From bed20422be84534d882dd64d03cb1257fba6edc6 Mon Sep 17 00:00:00 2001 From: yomguy Date: Tue, 20 Mar 2012 13:03:41 +0100 Subject: [PATCH] fix README parsing during install, go to 0.6.2 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(): -- 2.39.5