]> git.parisson.com Git - deefuzzer.git/commitdiff
fix README parsing during install, go to 0.6.2
authoryomguy <yomguy@parisson.com>
Tue, 20 Mar 2012 12:03:41 +0000 (13:03 +0100)
committeryomguy <yomguy@parisson.com>
Tue, 20 Mar 2012 12:03:41 +0000 (13:03 +0100)
setup.py

index 5b1f617084c9ab7b4011a2b2f014f182cb30ef99..c0d4853c46f51903c7b57459915ae1525709ca1b 100644 (file)
--- 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():