[MRG] Add python versions (#119)
* Add python versions * Add MANIFEST.in * Bump numpy versionpull/2/head
parent
58eddd0804
commit
f7e69bbbfe
|
|
@ -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:
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue