Setup.py install fails as README.rst does not exist. Using README.md file as fallback instead
parent
41a71fccd9
commit
a89dc6533a
2
setup.py
2
setup.py
|
@ -52,7 +52,7 @@ if __name__ == "__main__":
|
||||||
with open("README.rst", "wb") as readme:
|
with open("README.rst", "wb") as readme:
|
||||||
readme.write(long_description)
|
readme.write(long_description)
|
||||||
else:
|
else:
|
||||||
long_description = open("README.rst").read()
|
long_description = open("README.md").read()
|
||||||
top_package_plat_files_file = "dtls_package_files"
|
top_package_plat_files_file = "dtls_package_files"
|
||||||
if dist:
|
if dist:
|
||||||
if plat_dist:
|
if plat_dist:
|
||||||
|
|
Loading…
Reference in New Issue