[MRG] Add python versions (#119)

* Add python versions

* Add MANIFEST.in

* Bump numpy version
pull/2/head
Vinayak Mehta 2018-10-04 23:43:52 +05:30 committed by GitHub
parent 58eddd0804
commit f7e69bbbfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 2 deletions

View File

@ -3,7 +3,13 @@ language: python
cache: pip cache: pip
python: python:
- "2.7" - "2.7"
- "3.5"
- "3.6" - "3.6"
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
before_install: before_install:
- sudo apt-get install python-tk python3-tk ghostscript - sudo apt-get install python-tk python3-tk ghostscript
install: install:

7
MANIFEST.in 100644
View File

@ -0,0 +1,7 @@
include MANIFEST.in
include setup.py
include setup.cfg
include README.md
include LICENSE
include requirements.txt
include requirements-dev.txt

View File

@ -1,6 +1,6 @@
click==6.7 click==6.7
matplotlib==2.2.3 matplotlib==2.2.3
numpy==1.13.3 numpy==1.15.2
opencv-python==3.4.2.17 opencv-python==3.4.2.17
pandas==0.23.4 pandas==0.23.4
pdfminer.six==20170720 pdfminer.six==20170720

View File

@ -49,7 +49,9 @@ def setup_package():
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6' 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]) ])
try: try: