From 06ed7eef04aad07d30da655b4820fb634e66aabe Mon Sep 17 00:00:00 2001 From: Josiah Carlson Date: Tue, 8 Oct 2013 18:38:06 -0700 Subject: [PATCH] Fix setup.py installations --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ed3853b..e442c2b 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,15 @@ from distutils.core import setup -with open('README') as f: - long_description = f.read() +try: + with open('README') as f: + long_description = f.read() +except: + long_description = '' setup( name='crontab', - version='0.17', + version='0.18', description='Parse and use crontab schedules in Python', author='Josiah Carlson', author_email='josiah.carlson@gmail.com',