19 lines
541 B
Python
19 lines
541 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
VERSION = (0, 4, 0)
|
|
PHASE = 'alpha' # alpha, beta or rc
|
|
PHASE_VERSION = '1'
|
|
|
|
__title__ = 'camelot-py'
|
|
__description__ = 'PDF Table Extraction for Humans.'
|
|
__url__ = 'http://camelot-py.readthedocs.io/'
|
|
if PHASE:
|
|
__version__ = '{}-{}'.format('.'.join(map(str, VERSION)), PHASE)
|
|
if PHASE_VERSION:
|
|
__version__ = '{}.{}'.format(__version__, PHASE_VERSION)
|
|
else:
|
|
__version__ = '.'.join(map(str, VERSION))
|
|
__author__ = 'Vinayak Mehta'
|
|
__author_email__ = 'vmehta94@gmail.com'
|
|
__license__ = 'MIT License'
|