-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from socialcopsdev/stream-nurminen-detection
[MRG] Add implementation of Anssi Nurminen's table detection algorithm
- Loading branch information
Showing
13 changed files
with
534 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
VERSION = (0, 3, 2) | ||
VERSION = (0, 4, 0) | ||
PRERELEASE = None # alpha, beta or rc | ||
REVISION = None | ||
|
||
|
||
def generate_version(version, prerelease=None, revision=None): | ||
version_parts = ['.'.join(map(str, version))] | ||
if prerelease is not None: | ||
version_parts.append('-{}'.format(prerelease)) | ||
if revision is not None: | ||
version_parts.append('.{}'.format(revision)) | ||
return ''.join(version_parts) | ||
|
||
|
||
__title__ = 'camelot-py' | ||
__description__ = 'PDF Table Extraction for Humans.' | ||
__url__ = 'http://camelot-py.readthedocs.io/' | ||
__version__ = '.'.join(map(str, VERSION)) | ||
__version__ = generate_version(VERSION, prerelease=PRERELEASE, revision=REVISION) | ||
__author__ = 'Vinayak Mehta' | ||
__author_email__ = 'vmehta94@gmail.com' | ||
__license__ = 'MIT License' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.