Fix setup.py installations
This commit is contained in:
parent
1209496ff7
commit
06ed7eef04
1 changed files with 6 additions and 3 deletions
9
setup.py
9
setup.py
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue