From d3ff79d8000882583addd08d6f7cd6b87825f8e9 Mon Sep 17 00:00:00 2001 From: kevgliss Date: Tue, 11 Aug 2015 15:46:54 -0700 Subject: [PATCH] Getting correct path to readme so that it doesn't matter where setup.py is run from --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8afa80ed..102a9002 100644 --- a/setup.py +++ b/setup.py @@ -113,7 +113,7 @@ setup( version='0.1', author='Kevin Glisson', author_email='kglisson@netflix.com', - long_description=open('README.rst').read(), + long_description=open(os.path.join(ROOT, 'README.rst')).read(), packages=['lemur'], include_package_data=True, zip_safe=False,