diff --git a/setup.py b/setup.py index 5f24118..e981112 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,10 @@ import setuptools -with open('README.md', 'r') as readme: - long_description = readme.read() +try: + with open('README.md', 'r') as readme: + long_description = readme.read() +except Exception: + long_description = '' setuptools.setup( name='python-string-utils', @@ -23,7 +26,6 @@ ], keywords='string str utilities validation compression development', packages=['string_utils'], - data_files=[('README', ['README.md'])], python_requires='>=3.5', setup_requires=['wheel'], )