5 Commits

Author SHA1 Message Date
Vinayak Mehta 759e635a3c Bump version 2018-09-25 12:32:01 +05:30
Vinayak Mehta 6298f3a0f6 Add codecov to Travis 2018-09-25 12:03:55 +05:30
Vinayak Mehta 08f638243e Fix codecov link 2018-09-25 11:45:57 +05:30
Vinayak Mehta 6703f2f254 Add codecov 2018-09-25 11:42:45 +05:30
Vinayak Mehta 13f2b199c9 Add Travis 2018-09-25 11:01:42 +05:30
6 changed files with 31 additions and 6 deletions
+1
View File
@@ -6,6 +6,7 @@ build/
dist/ dist/
*.egg-info/ *.egg-info/
.coverage .coverage
coverage.xml
.pytest_cache/ .pytest_cache/
_build/ _build/
Executable
+11
View File
@@ -0,0 +1,11 @@
language: python
python:
- "2.7"
before_install:
- sudo apt-get install python-tk ghostscript
install:
- pip install ".[dev]"
script:
- pytest
after_success:
- codecov
+6 -3
View File
@@ -1,11 +1,14 @@
<p align="center">
<img src="https://raw.githubusercontent.com/socialcopsdev/camelot/master/docs/_static/camelot.png" width="200">
</p>
# Camelot: PDF Table Extraction for Humans # Camelot: PDF Table Extraction for Humans
![license](https://img.shields.io/badge/license-MIT-lightgrey.svg) ![python-version](https://img.shields.io/badge/python-2.7-blue.svg) [![Build Status](https://travis-ci.org/socialcopsdev/camelot.svg?branch=master)](https://travis-ci.org/socialcopsdev/camelot) [![codecov.io](https://codecov.io/github/socialcopsdev/camelot/badge.svg?branch=master&service=github)](https://codecov.io/github/socialcopsdev/camelot?branch=master)
[![image](https://img.shields.io/pypi/v/camelot-py.svg)](https://pypi.org/project/camelot-py/) [![image](https://img.shields.io/pypi/l/camelot-py.svg)](https://pypi.org/project/camelot-py/) [![image](https://img.shields.io/pypi/pyversions/camelot-py.svg)](https://pypi.org/project/camelot-py/)
**Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files! **Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
![camelot-logo](https://raw.githubusercontent.com/socialcopsdev/camelot/master/docs/_static/camelot.png)
--- ---
**Here's how you can extract tables from PDF files.** Check out the PDF used in this example, [here](https://github.com/socialcopsdev/camelot/blob/master/docs/_static/pdf/foo.pdf). **Here's how you can extract tables from PDF files.** Check out the PDF used in this example, [here](https://github.com/socialcopsdev/camelot/blob/master/docs/_static/pdf/foo.pdf).
+1 -1
View File
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
VERSION = (0, 1, 1) VERSION = (0, 1, 2)
__title__ = 'camelot-py' __title__ = 'camelot-py'
__description__ = 'PDF Table Extraction for Humans.' __description__ = 'PDF Table Extraction for Humans.'
+11 -2
View File
@@ -8,10 +8,19 @@ Camelot: PDF Table Extraction for Humans
Release v\ |version|. (:ref:`Installation <install>`) Release v\ |version|. (:ref:`Installation <install>`)
.. image:: https://img.shields.io/badge/license-MIT-lightgrey.svg .. image:: https://travis-ci.org/socialcopsdev/camelot.svg?branch=master
:target: https://travis-ci.org/socialcopsdev/camelot
.. image:: https://codecov.io/github/socialcopsdev/camelot/badge.svg?branch=master&service=github
:target: https://codecov.io/github/socialcopsdev/camelot?branch=master
.. image:: https://img.shields.io/pypi/v/camelot-py.svg
:target: https://pypi.org/project/camelot-py/ :target: https://pypi.org/project/camelot-py/
.. image:: https://img.shields.io/badge/python-2.7-blue.svg .. image:: https://img.shields.io/pypi/l/camelot-py.svg
:target: https://pypi.org/project/camelot-py/
.. image:: https://img.shields.io/pypi/pyversions/camelot-py.svg
:target: https://pypi.org/project/camelot-py/ :target: https://pypi.org/project/camelot-py/
**Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files! **Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
+1
View File
@@ -1,3 +1,4 @@
codecov==2.0.15
pytest==3.8.0 pytest==3.8.0
pytest-runner==4.2 pytest-runner==4.2
Sphinx==1.7.9 Sphinx==1.7.9