12 lines
309 B
Python
12 lines
309 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
VERSION = (0, 3, 2)
|
|
|
|
__title__ = 'camelot-py'
|
|
__description__ = 'PDF Table Extraction for Humans.'
|
|
__url__ = 'http://camelot-py.readthedocs.io/'
|
|
__version__ = '.'.join(map(str, VERSION))
|
|
__author__ = 'Vinayak Mehta'
|
|
__author_email__ = 'vmehta94@gmail.com'
|
|
__license__ = 'MIT License'
|