Getting correct path to readme so that it doesn't matter where setup.py is run from
This commit is contained in:
parent
bfcbd1b065
commit
d3ff79d800
2
setup.py
2
setup.py
|
@ -113,7 +113,7 @@ setup(
|
||||||
version='0.1',
|
version='0.1',
|
||||||
author='Kevin Glisson',
|
author='Kevin Glisson',
|
||||||
author_email='kglisson@netflix.com',
|
author_email='kglisson@netflix.com',
|
||||||
long_description=open('README.rst').read(),
|
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
|
||||||
packages=['lemur'],
|
packages=['lemur'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
Loading…
Reference in New Issue