Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 45e7f7570e | |||
| 296be21d9d |
+6
-1
@@ -1,8 +1,13 @@
|
||||
Release History
|
||||
===============
|
||||
|
||||
0.2.3 (2018-10-08)
|
||||
------------------
|
||||
|
||||
* Remove hard dependencies on requirements versions.
|
||||
|
||||
0.2.2 (2018-10-08)
|
||||
-----------------
|
||||
------------------
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
VERSION = (0, 2, 2)
|
||||
VERSION = (0, 2, 3)
|
||||
|
||||
__title__ = 'camelot-py'
|
||||
__description__ = 'PDF Table Extraction for Humans.'
|
||||
|
||||
@@ -14,25 +14,25 @@ with open('README.md', 'r') as f:
|
||||
|
||||
|
||||
requires = [
|
||||
'click==6.7',
|
||||
'matplotlib==2.2.3',
|
||||
'numpy==1.15.2',
|
||||
'openpyxl==2.5.8',
|
||||
'pandas==0.23.4',
|
||||
'pdfminer.six==20170720',
|
||||
'PyPDF2==1.26.0'
|
||||
'click>=6.7',
|
||||
'matplotlib>=2.2.3',
|
||||
'numpy>=1.15.2',
|
||||
'openpyxl>=2.5.8',
|
||||
'pandas>=0.23.4',
|
||||
'pdfminer.six>=20170720',
|
||||
'PyPDF2>=1.26.0'
|
||||
]
|
||||
|
||||
all_requires = [
|
||||
'opencv-python==3.4.2.17'
|
||||
'opencv-python>=3.4.2.17'
|
||||
]
|
||||
|
||||
dev_requires = [
|
||||
'codecov==2.0.15',
|
||||
'pytest==3.8.0',
|
||||
'pytest-cov==2.6.0',
|
||||
'pytest-runner==4.2',
|
||||
'Sphinx==1.7.9'
|
||||
'codecov>=2.0.15',
|
||||
'pytest>=3.8.0',
|
||||
'pytest-cov>=2.6.0',
|
||||
'pytest-runner>=4.2',
|
||||
'Sphinx>=1.7.9'
|
||||
]
|
||||
dev_requires = dev_requires + all_requires
|
||||
|
||||
@@ -76,5 +76,5 @@ def setup_package():
|
||||
setup(**metadata)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
if __name__ >= '__main__':
|
||||
setup_package()
|
||||
|
||||
Reference in New Issue
Block a user