v 20160202 with Py 2.6 & Py 3.5 support

pull/21/head
Philippe Guglielmetti 2016-02-02 15:38:51 +01:00
parent 5f888fe3fb
commit 21fd2bbd23
4 changed files with 34 additions and 16 deletions

14
.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
*.class
*.pyc
*.pyo
.svn
_svn
.pythoscope
.ipynb_checkpoints
.settings
_update.bat
docs/_build
/Goulib.egg-info/
/build/
/dist/
/pdfminer.six.egg-info/

View File

@ -1,7 +1,9 @@
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
install:
- pip install six
- pip install pycrypto

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__version__ = '20150601'
__version__ = '20160202'
if __name__ == '__main__':
print (__version__)

View File

@ -33,8 +33,10 @@ PDF parser that can be used for other purposes instead of text analysis.''',
keywords=['pdf parser', 'pdf converter', 'layout analysis', 'text mining'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',