Getting correct path to readme so that it doesn't matter where setup.py is run from

This commit is contained in:
kevgliss 2015-08-11 15:46:54 -07:00
parent bfcbd1b065
commit d3ff79d800
1 changed files with 1 additions and 1 deletions

View File

@ -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,