Skip to content

Commit ae48891

Browse files
authored
Merge pull request #9 from robmarkcole/development
Adds CI
2 parents 169c02d + 4dca5c7 commit ae48891

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
# sudo false implies containerized builds
3+
#sudo: false
4+
python:
5+
- "3.7"
6+
before_install:
7+
- pip install pytest pytest-cov
8+
- pip install coveralls
9+
install:
10+
- pip install -r requirements.txt
11+
- pip install -r requirements-dev.txt
12+
# command to run tests
13+
script:
14+
- py.test
15+
after_success:
16+
- coveralls

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
22
[![PyPI Version](https://img.shields.io/pypi/v/deepstack-python.svg)](https://pypi.org/project/deepstack-python/)
3+
[![build status](http://img.shields.io/travis/robmarkcole/deepstack-python/master.svg?style=flat)](https://travis-ci.org/robmarkcole/deepstack-python)
34

45
# deepstack-python
56
Unofficial python API for DeepStack. Provides class for making requests to the object detection endpoint, and functions for processing the result. See the `usage.ipynb` notebook for usage.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = "0.1"
3+
VERSION = "0.2"
44

55
REQUIRES = ["requests"]
66

0 commit comments

Comments
 (0)