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