Fix setup.py installations
This commit is contained in:
parent
1209496ff7
commit
06ed7eef04
1 changed files with 6 additions and 3 deletions
7
setup.py
7
setup.py
|
@ -2,12 +2,15 @@
|
|||
|
||||
from distutils.core import setup
|
||||
|
||||
with open('README') as f:
|
||||
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',
|
||||
|
|
Loading…
Reference in a new issue