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,10 +1,12 @@
language: python language: python
python: python:
- "2.7" - "2.6"
- "3.4" - "2.7"
install: - "3.4"
- pip install six - "3.5"
- pip install pycrypto install:
- pip install chardet - pip install six
script: - pip install pycrypto
nosetests --nologcapture - pip install chardet
script:
nosetests --nologcapture

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = '20150601' __version__ = '20160202'
if __name__ == '__main__': if __name__ == '__main__':
print (__version__) 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'], keywords=['pdf parser', 'pdf converter', 'layout analysis', 'text mining'],
classifiers=[ classifiers=[
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Console', 'Environment :: Console',
'Intended Audience :: Developers', 'Intended Audience :: Developers',