vdirsyncer/vdirsyncer/__init__.py
Markus Unterwaditzer 552dc33037 stylefix
2015-07-20 17:56:57 +02:00

17 lines
501 B
Python

# -*- coding: utf-8 -*-
'''
vdirsyncer is a synchronization tool for vdir. See the README for more details.
'''
try:
from .version import version as __version__ # noqa
except ImportError:
raise ImportError(
'Failed to find (autogenerated) version.py. '
'This might be because you are installing from GitHub\'s tarballs, '
'use the PyPI ones.'
)
PROJECT_HOME = 'https://github.com/untitaker/vdirsyncer'
DOCS_HOME = 'https://vdirsyncer.readthedocs.org/en/latest'