Fix setup.py installations

This commit is contained in:
Josiah Carlson 2013-10-08 18:38:06 -07:00
parent 1209496ff7
commit 06ed7eef04

View file

@ -2,12 +2,15 @@
from distutils.core import setup from distutils.core import setup
with open('README') as f: try:
long_description = f.read() with open('README') as f:
long_description = f.read()
except:
long_description = ''
setup( setup(
name='crontab', name='crontab',
version='0.17', version='0.18',
description='Parse and use crontab schedules in Python', description='Parse and use crontab schedules in Python',
author='Josiah Carlson', author='Josiah Carlson',
author_email='josiah.carlson@gmail.com', author_email='josiah.carlson@gmail.com',