Setup.py install fails as README.rst does not exist. Using README.md file as fallback instead

master
hades 2017-08-14 13:09:59 +02:00
parent 41a71fccd9
commit a89dc6533a
1 changed files with 1 additions and 1 deletions

View File

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